2015-11-10 20:44:46 +00:00
|
|
|
{ fetchurl, stdenv
|
|
|
|
, CoreServices
|
|
|
|
}:
|
2010-10-07 07:29:36 +00:00
|
|
|
|
2015-09-18 01:26:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-07 07:29:36 +00:00
|
|
|
name = "check-${version}";
|
2015-09-18 01:26:32 +00:00
|
|
|
version = "0.10.0";
|
2010-10-07 07:29:36 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/check/${version}/check-${version}.tar.gz";
|
2015-09-18 01:26:32 +00:00
|
|
|
sha256 = "0lhhywf5nxl3dd0hdakra3aasl590756c9kmvyifb3vgm9k0gxgm";
|
2010-10-07 07:29:36 +00:00
|
|
|
};
|
|
|
|
|
2013-12-19 10:29:22 +00:00
|
|
|
# Test can randomly fail: http://hydra.nixos.org/build/7243912
|
|
|
|
doCheck = false;
|
2010-10-07 07:29:36 +00:00
|
|
|
|
2015-11-10 20:44:46 +00:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin CoreServices;
|
|
|
|
|
2015-04-30 18:48:19 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Unit testing framework for C";
|
2010-10-07 07:29:36 +00:00
|
|
|
|
|
|
|
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/;
|
|
|
|
|
2015-04-30 18:48:19 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2010-10-07 07:29:36 +00:00
|
|
|
};
|
|
|
|
}
|