summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/QuickCheck/2.1.1.1.nix
blob: f4463394ea151262a974b6da9d9c1552fc8e0a63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, mtl}:

cabal.mkDerivation (self : {
  pname = "QuickCheck";
  version = "2.1.1.1"; # Haskell Platform 2010.2.0.0
  sha256 = "626a6f7a69e2bea3b4fe7c573d0bc8da8c77f97035cb2d3a5e1c9fca382b59c9";
  propagatedBuildInputs = [mtl];
  meta = {
    description = "Automatic testing of Haskell programs";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})