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 { mkDerivation
, broken ? false
, test-framework , test-framework
, test-framework-hunit , test-framework-hunit
, test-framework-quickcheck2 , test-framework-quickcheck2
@ -183,5 +184,5 @@ in mkDerivation (rec {
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
platforms = ghc.meta.platforms; platforms = ghc.meta.platforms;
maintainers = with stdenv.lib.maintainers; [ jwiegley cstrahan ]; 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 }:
bootPkgs.callPackage ./base.nix { inherit bootPkgs; } bootPkgs.callPackage ./base.nix {
inherit bootPkgs;
broken = true; # http://hydra.nixos.org/build/45110274
}