summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/random/1.0.0.3.nix
blob: 5e46e878b85a2199244b0265870c5810f3396c20 (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.3"; # future platform?
  sha256 = "0k2735vrx0id2dxzk7lkm22w07p7gy86zffygk60jxgh9rvignf6";
  propagatedBuildInputs = [time];
  meta = {
    description = "random number library";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})