Skip to content

Commit 1ba97d6

Browse files
committedFeb 27, 2017
ghcjsHEAD: unbreak
1 parent 3540c13 commit 1ba97d6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎pkgs/development/compilers/ghcjs/base.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{ mkDerivation
2+
, broken ? false
23
, test-framework
34
, test-framework-hunit
45
, test-framework-quickcheck2
@@ -183,5 +184,5 @@ in mkDerivation (rec {
183184
license = stdenv.lib.licenses.bsd3;
184185
platforms = ghc.meta.platforms;
185186
maintainers = with stdenv.lib.maintainers; [ jwiegley cstrahan ];
186-
broken = true; # http://hydra.nixos.org/build/45110274
187+
inherit broken;
187188
})
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{ bootPkgs }:
22

3-
bootPkgs.callPackage ./base.nix { inherit bootPkgs; }
3+
bootPkgs.callPackage ./base.nix {
4+
inherit bootPkgs;
5+
broken = true; # http://hydra.nixos.org/build/45110274
6+
}

0 commit comments

Comments
 (0)
Please sign in to comment.