Make nix-build actually build both packages

This commit is contained in:
Richard Marko 2023-11-08 18:24:59 +01:00
parent bfede6f650
commit 70fb712323

View File

@ -17,8 +17,10 @@
then pkgs.lib.composeExtensions orig.overrides overlay
else overlay;
};
in {
haskellPackages =
pkgs.haskellPackages.override overrideHaskellPackages;
in {
inherit (haskellPackages) hnix-store-core hnix-store-remote;
inherit haskellPackages;
inherit pkgs;
}