Added random-fu plus dependencies.

(Unfortunately doesn't compile yet with ghc-7.)

svn path=/nixpkgs/trunk/; revision=26569
This commit is contained in:
Andres Löh
2011-03-28 15:03:51 +00:00
parent ed10cda58d
commit 127a2fc8e0
9 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{cabal, mtl}:
cabal.mkDerivation (self : {
pname = "stateref";
version = "0.3";
sha256 = "0hdpw6g255lj7jjvgqwhjdpzmka546vda5qjvry8gjj6nfm91lvx";
propagatedBuildInputs = [mtl];
meta = {
description = "Abstraction for things that work like IORef";
license = "Public Domain";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})