fix nix flake show

This commit is contained in:
Jörg Thalheim 2023-06-12 06:23:10 +02:00
parent 8e0019d8bc
commit a2937d9e77

View file

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