3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/chell-quickcheck/default.nix
2014-03-17 18:33:54 +01:00

15 lines
465 B
Nix

{ cabal, chell, QuickCheck, random }:
cabal.mkDerivation (self: {
pname = "chell-quickcheck";
version = "0.2.2";
sha256 = "05qshv9vcl05khxsxyks2z7dqd8dqafjsg3awkkdhviviv5p2fp8";
buildDepends = [ chell QuickCheck random ];
meta = {
homepage = "https://john-millikin.com/software/chell/";
description = "QuickCheck support for the Chell testing library";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})