1
0
Fork 0

fix nix flake show

main
Jörg Thalheim 2023-06-12 06:23:10 +02:00
parent 8e0019d8bc
commit a2937d9e77
1 changed files with 2 additions and 1 deletions

View File

@ -14,8 +14,9 @@
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
in in
{ {
packages = forAllSystems (system: import ./default.nix { legacyPackages = forAllSystems (system: import ./default.nix {
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
}); });
packages = forAllSystems (system: nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) self.legacyPackages.${system});
}; };
} }