nixpkgs/pkgs/development/libraries/haskell/smallcheck/default.nix
2012-02-16 14:05:41 +00:00

19 lines
511 B
Nix

{ cabal, dlist }:
cabal.mkDerivation (self: {
pname = "smallcheck";
version = "0.6";
sha256 = "19b2dyjbryx2a5bq70pn2mbzlcvjjwhii78fwwx6q57r13zljb9v";
buildDepends = [ dlist ];
meta = {
homepage = "https://github.com/feuerbach/smallcheck";
description = "A property-based testing library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})