build: Move non-package output to legacyPackages

This commit is contained in:
Leni Aniva 2024-08-17 01:59:48 -07:00
parent 43e11f1ba3
commit f87eed817f
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 3 additions and 1 deletions

View File

@ -63,9 +63,11 @@
packages = {
inherit (leanPkgs) lean lean-all;
inherit (project) sharedLib executable;
inherit project leanPkgs;
default = project.executable;
};
legacyPackages = {
inherit project leanPkgs;
};
checks = {
test = pkgs.runCommand "test" {
buildInputs = [ test.executable leanPkgs.lean-all ];