Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
864 B
Nix
42 lines
864 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "CUnit";
|
|
version = "2.1-3";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
autoconf
|
|
automake
|
|
];
|
|
buildInputs = [ libtool ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/cunit/CUnit/${version}/CUnit-${version}.tar.bz2";
|
|
sha256 = "057j82da9vv4li4z5ri3227ybd18nzyq81f6gsvhifs5z0vr3cpm";
|
|
};
|
|
|
|
meta = {
|
|
description = "Unit Testing Framework for C";
|
|
|
|
longDescription = ''
|
|
CUnit is a lightweight system for writing, administering, and running
|
|
unit tests in C. It provides C programmers a basic testing functionality
|
|
with a flexible variety of user interfaces.
|
|
'';
|
|
|
|
homepage = "https://cunit.sourceforge.net/";
|
|
|
|
license = lib.licenses.lgpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|