summary refs log tree commit diff
path: root/pkgs/development/libraries/cmocka
diff options
context:
space:
mode:
authorLouis Taylor <louis@kragniz.eu>2016-02-03 04:34:50 +0000
committerLouis Taylor <louis@kragniz.eu>2016-02-03 04:34:50 +0000
commit55c4bf166ae61bcf3904e8b3d2b5691dac6b5724 (patch)
tree7ea7c862b1c728874b8f52f92077108b16651b6e /pkgs/development/libraries/cmocka
parentf499c03ec0ac949cdd0ce6a6124a7d01c53898c6 (diff)
downloadnixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.tar
nixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.tar.gz
nixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.tar.bz2
nixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.tar.lz
nixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.tar.xz
nixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.tar.zst
nixpkgs-55c4bf166ae61bcf3904e8b3d2b5691dac6b5724.zip
cmocka: init at 1.0.1
Diffstat (limited to 'pkgs/development/libraries/cmocka')
-rw-r--r--pkgs/development/libraries/cmocka/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/development/libraries/cmocka/default.nix b/pkgs/development/libraries/cmocka/default.nix
new file mode 100644
index 00000000000..4e3f5b219e9
--- /dev/null
+++ b/pkgs/development/libraries/cmocka/default.nix
@@ -0,0 +1,48 @@
+{ fetchurl, stdenv, cmake }:
+
+stdenv.mkDerivation rec {
+  name = "cmocka-${version}";
+  version = "1.0.1";
+
+  src = fetchurl {
+    url = "https://cmocka.org/files/1.0/cmocka-${version}.tar.xz";
+    sha256 = "0fvm6rdalqcxckbddch8ycdw6n2ckldblv117n09chi2l7bm0q5k";
+  };
+
+  buildInputs = [ cmake ];
+
+  meta = with stdenv.lib; {
+    description = "Lightweight library to simplify and generalize unit tests for C";
+
+    longDescription =
+      ''There are a variety of C unit testing frameworks available however
+        many of them are fairly complex and require the latest compiler
+        technology.  Some development requires the use of old compilers which
+        makes it difficult to use some unit testing frameworks. In addition
+        many unit testing frameworks assume the code being tested is an
+        application or module that is targeted to the same platform that will
+        ultimately execute the test.  Because of this assumption many
+        frameworks require the inclusion of standard C library headers in the
+        code module being tested which may collide with the custom or
+        incomplete implementation of the C library utilized by the code under
+        test.
+
+        Cmocka only requires a test application is linked with the standard C
+        library which minimizes conflicts with standard C library headers.
+        Also, CMocka tries to avoid the use of some of the newer features of
+        C compilers.
+
+        This results in CMocka being a relatively small library that can be
+        used to test a variety of exotic code. If a developer wishes to
+        simply test an application with the latest compiler then other unit
+        testing frameworks may be preferable.
+
+        This is the successor of Google's Cmockery.'';
+
+    homepage = https://cmocka.org/;
+
+    license = licenses.asl20;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ kragniz ];
+  };
+}