Files
nix/libs/default.nix

14 lines
207 B
Nix
Raw Normal View History

2025-04-20 11:16:39 +08:00
{ nixpkgs }:
with nixpkgs.lib; {
# Add your library functions here
#
forAllSystems = genAttrs [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
}