We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f55815 commit ca43418Copy full SHA for ca43418
overlay.nix
@@ -2,10 +2,13 @@ pkgs: hlib: helf: huper: {
2
hnix-store-core =
3
helf.callCabal2nix "hnix-store-core" ./hnix-store-core {};
4
hnix-store-remote =
5
- ( helf.callCabal2nixWithOptions "hnix-store-remote" ./hnix-store-remote "-fio-testsuite" { }
6
- ).overrideAttrs (attrs: {
7
- buildInputs = attrs.buildInputs ++ [
8
- pkgs.nix
9
- ];
10
- });
+ if pkgs.stdenv.isDarwin
+ then helf.callCabal2nix "hnix-store-remote" ./hnix-store-remote { }
+ else
+ ( helf.callCabal2nixWithOptions "hnix-store-remote" ./hnix-store-remote "-fio-testsuite" { }
+ ).overrideAttrs (attrs: {
+ buildInputs = attrs.buildInputs ++ [
11
+ pkgs.nix
12
+ ];
13
+ });
14
}
0 commit comments