haskellPackages: fix monadlab and Crypto with most recent ghc
svn path=/nixpkgs/trunk/; revision=16295
This commit is contained in:
parent
07df330fd5
commit
769dec7238
3 changed files with 6 additions and 5 deletions
|
@ -1,9 +1,10 @@
|
|||
{cabal}:
|
||||
{cabal, HUnit, QuickCheck}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "Crypto";
|
||||
version = "4.1.0";
|
||||
sha256 = "0984c833c5dfa6f4d56fd6fb284db7b7cef6676dc7999a1436aa856becba2b8f";
|
||||
propagatedBuildInputs = [HUnit QuickCheck];
|
||||
meta = {
|
||||
description = "Several encryption algorithms for Haskell";
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{cabal}:
|
||||
{cabal, parsec}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "MonadLab";
|
||||
|
@ -7,5 +7,5 @@ cabal.mkDerivation (self : {
|
|||
meta = {
|
||||
description = "Automatically generate layered monads.";
|
||||
};
|
||||
propagatedBuildInputs = [];
|
||||
propagatedBuildInputs = [parsec];
|
||||
})
|
||||
|
|
|
@ -48,7 +48,7 @@ rec {
|
|||
};
|
||||
|
||||
Crypto = import ../development/libraries/haskell/Crypto {
|
||||
inherit cabal;
|
||||
inherit cabal HUnit QuickCheck;
|
||||
};
|
||||
|
||||
dataenc = import ../development/libraries/haskell/dataenc {
|
||||
|
@ -184,7 +184,7 @@ rec {
|
|||
};
|
||||
|
||||
monadlab = import ../development/libraries/haskell/monadlab {
|
||||
inherit cabal;
|
||||
inherit cabal parsec;
|
||||
};
|
||||
|
||||
MonadRandom = import ../development/libraries/haskell/MonadRandom {
|
||||
|
|
Loading…
Reference in a new issue