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 {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "check";
|
2020-01-31 18:58:35 +00:00
|
|
|
version = "0.14.0";
|
2010-10-07 07:29:36 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-14 20:05:14 +00:00
|
|
|
url = "https://github.com/libcheck/check/releases/download/${version}/check-${version}.tar.gz";
|
2020-01-31 18:58:35 +00:00
|
|
|
sha256 = "02zkfiyklckmivrfvdsrlzvzphkdsgjrz3igncw05dv5pshhq3xx";
|
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.
|
|
|
|
'';
|
|
|
|
|
2017-10-14 20:05:14 +00:00
|
|
|
homepage = https://libcheck.github.io/check/;
|
2010-10-07 07:29:36 +00:00
|
|
|
|
2015-04-30 18:48:19 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2010-10-07 07:29:36 +00:00
|
|
|
};
|
|
|
|
}
|