We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 3540c13 commit 1ba97d6Copy full SHA for 1ba97d6
pkgs/development/compilers/ghcjs/base.nix
@@ -1,4 +1,5 @@
1
{ mkDerivation
2
+, broken ? false
3
, test-framework
4
, test-framework-hunit
5
, test-framework-quickcheck2
@@ -183,5 +184,5 @@ in mkDerivation (rec {
183
184
license = stdenv.lib.licenses.bsd3;
185
platforms = ghc.meta.platforms;
186
maintainers = with stdenv.lib.maintainers; [ jwiegley cstrahan ];
- broken = true; # http://hydra.nixos.org/build/45110274
187
+ inherit broken;
188
})
pkgs/development/compilers/ghcjs/default.nix
@@ -1,3 +1,6 @@
{ bootPkgs }:
-bootPkgs.callPackage ./base.nix { inherit bootPkgs; }
+bootPkgs.callPackage ./base.nix {
+ inherit bootPkgs;
+ broken = true; # http://hydra.nixos.org/build/45110274
6
+}
0 commit comments