1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Added smallcheck.

svn path=/nixpkgs/trunk/; revision=27363
This commit is contained in:
Andres Löh 2011-06-07 14:23:01 +00:00
parent 846238fa25
commit 1c00dfa14a
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "smallcheck";
version = "0.4";
sha256 = "0nq13jm3akrmgk6n2clisip16v0jf1xkm0hm678v63s87hxqb1ma";
meta = {
description = "Another lightweight testing library in Haskell";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View file

@ -837,6 +837,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
sendfile = callPackage ../development/libraries/haskell/sendfile {};
smallcheck = callPackage ../development/libraries/haskell/smallcheck {};
snapCore = callPackage ../development/libraries/haskell/snap/core.nix {};
snapServer = callPackage ../development/libraries/haskell/snap/server.nix {};