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
432 B
Nix
15 lines
432 B
Nix
{ cabal, MonadRandom, random }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "random-shuffle";
|
|
version = "0.0.4";
|
|
sha256 = "0586bnlh0g2isc44jbjvafkcl4yw6lp1db8x6vr0pza0y08l8w2j";
|
|
buildDepends = [ MonadRandom random ];
|
|
meta = {
|
|
description = "Random shuffle implementation";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|