4490fe934e
- base64-bytestring: updated to version 0.1.2.0 - binary-shared: updated to version 0.8.2 - bson: updated to version 0.2.1 - leksah-server: updated to version 0.12.1.2 - leksah: updated to version 0.12.1.2 - MonadRandom: updated to version 0.1.7 - random-shuffle: updated to version 0.0.4 svn path=/nixpkgs/trunk/; revision=34569
15 lines
394 B
Nix
15 lines
394 B
Nix
{ cabal, mtl, random }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "MonadRandom";
|
|
version = "0.1.7";
|
|
sha256 = "0y4fsb3j0babq388rw3y1kbxbjz6plfgbg4g1y27hdf7jf5c8x33";
|
|
buildDepends = [ mtl random ];
|
|
meta = {
|
|
description = "Random-number generation monad";
|
|
license = "unknown";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|