mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
quickcheck-instances: jailbreak to work with newer QuickCheck
This commit is contained in:
parent
5221cfdda9
commit
84fba566f1
2 changed files with 4 additions and 1 deletions
|
@ -14,4 +14,5 @@ cabal.mkDerivation (self: {
|
|||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
||||
};
|
||||
jailbreak = true;
|
||||
})
|
||||
|
|
|
@ -2065,7 +2065,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
quickcheckAssertions = callPackage ../development/libraries/haskell/quickcheck-assertions {};
|
||||
|
||||
quickcheckInstances = callPackage ../development/libraries/haskell/quickcheck-instances {};
|
||||
quickcheckInstances = callPackage ../development/libraries/haskell/quickcheck-instances {
|
||||
QuickCheck = self.QuickCheck_2_7_1;
|
||||
};
|
||||
|
||||
quickcheckIo = callPackage ../development/libraries/haskell/quickcheck-io {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue