summary refs log tree commit diff
path: root/pkgs/development/libraries/check/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/check/default.nix')
-rw-r--r--pkgs/development/libraries/check/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/libraries/check/default.nix b/pkgs/development/libraries/check/default.nix
new file mode 100644
index 00000000000..d04f8c8e750
--- /dev/null
+++ b/pkgs/development/libraries/check/default.nix
@@ -0,0 +1,30 @@
+{ fetchurl, stdenv }:
+
+let version = "0.9.8"; in
+stdenv.mkDerivation {
+  name = "check-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/check/${version}/check-${version}.tar.gz";
+    sha256 = "0zvak7vx0zq344x174yg9vkw6fg9kycda15zlbz4yn07pdbgkb42";
+  };
+
+  doCheck = true;
+
+  meta = {
+    description = "Check, a 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 = "LGPLv2+";
+  };
+}