nixpkgs/pkgs/development/libraries/haskell/smallcheck/default.nix
Peter Simons 0a872860d7 haskell-smallcheck: updated to version 0.5
svn path=/nixpkgs/trunk/; revision=30487
2011-11-20 10:13:48 +00:00

18 lines
490 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "smallcheck";
version = "0.5";
sha256 = "10bmaifpkd5h3fp76cgbbc21q6nd0v8b3f80fjnb1ggg5zqs10dv";
meta = {
homepage = "https://github.com/feuerbach/smallcheck";
description = "Another lightweight testing library in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})