nixpkgs/pkgs/development/libraries/check/default.nix
Ludovic Courtès 40e57793f9 Add Check, a unit testing framework for C.
svn path=/nixpkgs/trunk/; revision=24127
2010-10-07 07:29:36 +00:00

31 lines
897 B
Nix

{ fetchurl, stdenv }:
let version = "0.9.8"; in
stdenv.mkDerivation {
name = "check-${version}";
src = fetchurl {
url = "mirror://sourceforge/check/${version}/check-${version}.tar.gz";
sha256 = "0zvak7vx0zq344x174yg9vkw6fg9kycda15zlbz4yn07pdbgkb42";
};
doCheck = true;
meta = {
description = "Check, a unit testing framework for C";
longDescription =
'' Check is a unit testing framework for C. It features a simple
interface for defining unit tests, putting little in the way of the
developer. Tests are run in a separate address space, so Check can
catch both assertion failures and code errors that cause
segmentation faults or other signals. The output from unit tests
can be used within source code editors and IDEs.
'';
homepage = http://check.sourceforge.net/;
license = "LGPLv2+";
};
}