nixpkgs/pkgs/development/libraries/check/default.nix
William A. Kennington III 6a5bf4f04e check: Add metadata
2015-04-30 18:49:27 -07:00

34 lines
1 KiB
Nix

{ fetchurl, stdenv }:
let version = "0.9.14"; in
stdenv.mkDerivation {
name = "check-${version}";
src = fetchurl {
url = "mirror://sourceforge/check/${version}/check-${version}.tar.gz";
sha256 = "02l4g79d81s07hzywcv1knwj5dyrwjiq2pgxaz7kidxi8m364wn2";
};
# Test can randomly fail: http://hydra.nixos.org/build/7243912
doCheck = false;
meta = with stdenv.lib; {
description = "Unit testing framework for C";
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/;
license = licenses.lgpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}