Skip to content
Snippets Groups Projects
Commit c404687e authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

allow access to the nixpkgs haskell utility library

I almost used it to narrow these two dependencies to library-only but it turns
out to not make much difference so it doesn't seem worth the extra complexity
now.

However, having access to the library might prove useful in the future.
parent 62ef80a1
No related branches found
No related tags found
1 merge request!1Simplistic implementation of download
...@@ -34,7 +34,9 @@ ...@@ -34,7 +34,9 @@
src = ./.; src = ./.;
compilerVersion = ghcVersion; compilerVersion = ghcVersion;
packageName = "gbs-downloader"; packageName = "gbs-downloader";
hsPkgsOverrides = import ./nix/haskell-packages.nix; hsPkgsOverrides = import ./nix/haskell-packages.nix {
haskellLib = pkgs.haskell.lib;
};
}; };
in { in {
checks = hslib.checks {}; checks = hslib.checks {};
......
hfinal: hprev: { {haskellLib}: hfinal: hprev: {
tahoe-chk = hfinal.callPackage ./tahoe-chk.nix {}; tahoe-chk = hfinal.callPackage ./tahoe-chk.nix {};
tahoe-great-black-swamp = hfinal.callPackage ./tahoe-great-black-swamp.nix {}; tahoe-great-black-swamp = hfinal.callPackage ./tahoe-great-black-swamp.nix {};
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment