2021-01-21 17:00:13 +00:00
|
|
|
{ fetchurl, lib, stdenv
|
2015-11-10 20:44:46 +00:00
|
|
|
, 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";
|
2020-08-10 05:01:19 +01:00
|
|
|
version = "0.15.2";
|
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";
|
2020-08-10 05:01:19 +01:00
|
|
|
sha256 = "02m25y9m46pb6n46s51av62kpd936lkfv3b13kfpckgvmh5lxpm8";
|
2010-10-07 08:29:36 +01:00
|
|
|
};
|
|
|
|
|
2020-04-18 21:51:19 +01:00
|
|
|
# Test can randomly fail: https://hydra.nixos.org/build/7243912
|
2013-12-19 10:29:22 +00:00
|
|
|
doCheck = false;
|
2010-10-07 08:29:36 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin CoreServices;
|
2015-11-10 20:44:46 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +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
|
|
|
};
|
|
|
|
}
|