nixpkgs/pkgs/development/libraries/haskell/smallcheck/default.nix
2013-12-18 14:56:43 +01:00

19 lines
526 B
Nix

{ cabal, logict, mtl }:
cabal.mkDerivation (self: {
pname = "smallcheck";
version = "1.1.1";
sha256 = "1ygrabxh40bym3grnzqyfqn96lirnxspb8cmwkkr213239y605sd";
buildDepends = [ logict mtl ];
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.ocharles
];
};
})