nix cleanup

This commit is contained in:
rhiannon morris 2022-05-04 18:35:43 +02:00
parent f5f2c4399e
commit d61101f786
1 changed files with 4 additions and 5 deletions

View File

@ -14,17 +14,16 @@
inherit system;
overlays = [ idris2-pkgs.overlay ];
};
inherit (pkgs.idris2-pkgs._builders) idrisPackage devEnv;
inherit (pkgs.idris2-pkgs._builders) idrisPackage;
quox = idrisPackage ./lib { };
quox-exe = idrisPackage ./exe { extraPkgs.quox = quox; };
quox-tests = idrisPackage ./tests { extraPkgs.quox = quox; };
in
{
defaultPackage = quox-exe;
packages = { inherit quox quox-exe quox-tests; };
devShell = pkgs.mkShell { buildInputs = [ (devEnv quox) ]; };
defaultPackage = quox;
}
);
}