feat: Output shared library in flake

This commit is contained in:
Leni Aniva 2024-03-06 15:26:35 -08:00
parent 3292b34070
commit 075bec6da2
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 4 additions and 3 deletions

View File

@ -28,9 +28,10 @@
src = ./.;
};
in rec {
packages = project // {
inherit leanPkgs;
default = packages.executable;
packages = {
inherit (leanPkgs) lean lean-all;
inherit (project) sharedLib executable;
default = project.executable;
};
devShells.default = project.devShell;
};