nixpkgs/pkgs/development/libraries/haskell/test-framework-quickcheck/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

20 lines
624 B
Nix

{ cabal, deepseq, extensibleExceptions, QuickCheck, random
, testFramework
}:
cabal.mkDerivation (self: {
pname = "test-framework-quickcheck";
version = "0.3.0";
sha256 = "0g8sh3x3mhns03svccgbdbw8crzpzmahp1hr1fs6ag66fqr8p9mv";
buildDepends = [
deepseq extensibleExceptions QuickCheck random testFramework
];
meta = {
homepage = "http://batterseapower.github.com/test-framework/";
description = "QuickCheck support for the test-framework package";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})