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