about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/cunit
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/cunit')
-rw-r--r--nixpkgs/pkgs/tools/misc/cunit/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/cunit/default.nix b/nixpkgs/pkgs/tools/misc/cunit/default.nix
new file mode 100644
index 000000000000..0322f3b708f1
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/cunit/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenv, fetchurl, autoconf, automake, libtool, autoreconfHook}:
+
+stdenv.mkDerivation rec {
+  pname = "CUnit";
+  version = "2.1-3";
+
+  nativeBuildInputs = [ autoreconfHook ];
+  buildInputs = [autoconf automake libtool];
+
+  src = fetchurl {
+    url = "mirror://sourceforge/cunit/CUnit/${version}/${pname}-${version}.tar.bz2";
+    sha256 = "057j82da9vv4li4z5ri3227ybd18nzyq81f6gsvhifs5z0vr3cpm";
+  };
+
+  meta = {
+    description = "A 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 = "http://cunit.sourceforge.net/";
+
+    license = lib.licenses.lgpl2;
+    platforms = lib.platforms.unix;
+  };
+}