3
0
Fork 0
forked from mirrors/nixpkgs

Added MonadRandom Haskell package.

svn path=/nixpkgs/trunk/; revision=15305
This commit is contained in:
Andres Löh 2009-04-25 15:33:37 +00:00
parent 2a1fae29f8
commit 922c14e372
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{cabal, mtl}:
cabal.mkDerivation (self : {
pname = "MonadRandom";
version = "0.1.3";
sha256 = "be4dd46a93b59a5e94b58e6986934ca91feace9962a1741b6107a3dd06879fea";
propagatedBuildInputs = [mtl];
meta = {
description = "Random-number generation monad";
};
})

View file

@ -153,6 +153,10 @@ rec {
inherit cabal;
};
MonadRandom = import ../development/libraries/haskell/MonadRandom {
inherit cabal mtl;
};
mtl = import ../development/libraries/haskell/mtl {
inherit cabal;
};