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

cabal.mkDerivation (self: {
  pname = "QuickCheck";
  version = "2.4.2";
  sha256 = "17qp73sdp780lha3i6xdsrvgshqz47qwldqknadc0w3vmscw61bg";
  buildDepends = [ extensibleExceptions random ];
  meta = {
    homepage = "http://code.haskell.org/QuickCheck";
    description = "Automatic testing of Haskell programs";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})