summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/random/1.0.0.2.nix
blob: 370f054dc1e3111a8a024d4b1caaf1c424a2bc58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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];
  };
})