Skip to content

Commit 08a09ca

Browse files
committed
Refactor test filtering
1 parent a8bbe63 commit 08a09ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/githash/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, lib, haskell-nix, recurseIntoAttrs, testSrc, compiler-nix-name, runCommand, gitMinimal, buildPackages }:
1+
{ stdenv, lib, haskell-nix, haskellLib, recurseIntoAttrs, testSrc, compiler-nix-name, runCommand, gitMinimal, buildPackages }:
22

33
with lib;
44

@@ -44,7 +44,7 @@ let
4444
in recurseIntoAttrs {
4545
# githash runs git from TH code and this needs a cross compiled git exe
4646
# to work correctly. Cross compiling git is currently brocken.
47-
meta.disabled = compiler-nix-name == "ghc901" || pkgs.haskell-nix.haskellLib.isCrossHost;
47+
meta.disabled = compiler-nix-name == "ghc901" || haskellLib.isCrossHost;
4848

4949
ifdInputs = {
5050
inherit (project) plan-nix;

0 commit comments

Comments
 (0)