2015-11-10 20:44:46 +00:00
|
|
|
{ fetchurl, stdenv
|
|
|
|
, CoreServices
|
|
|
|
}:
|
2010-10-07 08:29:36 +01:00
|
|
|
|
2015-09-18 02:26:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "check";
|
2018-04-08 04:59:59 +01:00
|
|
|
version = "0.12.0";
|
2010-10-07 08:29:36 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-14 21:05:14 +01:00
|
|
|
url = "https://github.com/libcheck/check/releases/download/${version}/check-${version}.tar.gz";
|
2018-04-08 04:59:59 +01:00
|
|
|
sha256 = "0d22h8xshmbpl9hba9ch3xj8vb9ybm5akpsbbh7yj07fic4h2hj6";
|
2010-10-07 08:29:36 +01:00
|
|
|
};
|
|
|
|
|
2013-12-19 10:29:22 +00:00
|
|
|
# Test can randomly fail: http://hydra.nixos.org/build/7243912
|
|
|
|
doCheck = false;
|
2010-10-07 08:29:36 +01:00
|
|
|
|
2015-11-10 20:44:46 +00:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin CoreServices;
|
|
|
|
|
2015-04-30 19:48:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Unit testing framework for C";
|
2010-10-07 08:29:36 +01: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 21:05:14 +01:00
|
|
|
homepage = https://libcheck.github.io/check/;
|
2010-10-07 08:29:36 +01:00
|
|
|
|
2015-04-30 19:48:19 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2010-10-07 08:29:36 +01:00
|
|
|
};
|
|
|
|
}
|