3
0
Fork 0
forked from mirrors/nixpkgs

ghcjsHEAD: unbreak

This commit is contained in:
Charles Strahan 2017-02-27 02:10:34 -05:00
parent 3540c139b9
commit 1ba97d6ee9
No known key found for this signature in database
GPG key ID: BB47AB4B8489B5A5
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,5 @@
{ mkDerivation
, broken ? false
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
@ -183,5 +184,5 @@ in mkDerivation (rec {
license = stdenv.lib.licenses.bsd3;
platforms = ghc.meta.platforms;
maintainers = with stdenv.lib.maintainers; [ jwiegley cstrahan ];
broken = true; # http://hydra.nixos.org/build/45110274
inherit broken;
})

View file

@ -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
}