nixpkgs/pkgs/development/libraries/haskell/test-framework-quickcheck2/default.nix
Andres Löh d7d0700d18 Added test-framework.
svn path=/nixpkgs/trunk/; revision=27695
2011-07-10 17:38:21 +00:00

15 lines
421 B
Nix

{cabal, QuickCheck2, testFramework}:
cabal.mkDerivation (self : {
pname = "test-framework-quickcheck2";
version = "0.2.10";
sha256 = "12c37m74idjydxshgms9ib9ii2rpvy4647kra2ards1w2jmnr6w3";
propagatedBuildInputs = [QuickCheck2 testFramework];
meta = {
description = "QuickCheck2 support for the test-framework package";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})