nixpkgs/pkgs/development/libraries/haskell/random/1.0.0.2.nix
Andres Löh 8fdb3c9e63 Make ghc-7.0.4 the default. Add experimental ghc-7.2.1rc1.
svn path=/nixpkgs/trunk/; revision=28163
2011-08-05 08:52:35 +00:00

14 lines
340 B
Nix

{cabal, time}:
cabal.mkDerivation (self : {
pname = "random";
version = "1.0.0.2";
sha256 = "5433aebb4bbfb999f1d02410c8ca3769c63cd8b02109d2771a37c12918f92dd5";
propagatedBuildInputs = [time];
meta = {
description = "random number library";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})