7ea86fc8a2
- hlint: updated to version 1.8.29 - hscolour: updated to version 1.20.2 - random-fu: updated to version 0.2.3.0 svn path=/nixpkgs/trunk/; revision=34324
21 lines
629 B
Nix
21 lines
629 B
Nix
{ cabal, erf, gamma, monadLoops, mtl, randomShuffle, randomSource
|
|
, rvar, syb, transformers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "random-fu";
|
|
version = "0.2.3.0";
|
|
sha256 = "17vn1dz4z00xjpsxjx2dfjnz4qhbn5cbkm2s142kdskiphgxi2f8";
|
|
buildDepends = [
|
|
erf gamma monadLoops mtl randomShuffle randomSource rvar syb
|
|
transformers vector
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/mokus0/random-fu";
|
|
description = "Random number generation";
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|