about summary refs log tree commit diff
path: root/pkgs/development/libraries/cutee
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2016-06-15 22:42:01 +0200
committerMichiel Leenaars <ml.software@leenaa.rs>2016-06-15 22:58:46 +0200
commit84873b15ab83967a2a45f1390717be659b04dc1a (patch)
treebf6a76ccacc191b8580b9a0489a0c0eaf804c43b /pkgs/development/libraries/cutee
parenta689df205a0f61aaefb666f7ffeb6a90d4d6af6f (diff)
cutee: init -> 0.4.2
Diffstat (limited to 'pkgs/development/libraries/cutee')
-rw-r--r--pkgs/development/libraries/cutee/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/libraries/cutee/default.nix b/pkgs/development/libraries/cutee/default.nix
new file mode 100644
index 0000000000000..eb19283caeaf3
--- /dev/null
+++ b/pkgs/development/libraries/cutee/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  pname = "cutee";
+  version = "0.4.2";
+  name = "${pname}-${version}";
+
+  src = fetchurl {
+    url    = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
+    sha256 = "18bzvhzx8k24mpcim5669n3wg9hd0sfsxj8zjpbr24hywrlppgc2";
+  };
+
+  buildFlags = "cutee";
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp cutee $out/bin
+  '';
+
+  meta = with stdenv.lib; {
+    description = "C++ Unit Testing Easy Environment";
+    homepage    = http://codesink.org/cutee_unit_testing.html;
+    license     = licenses.gpl2Plus;
+    maintainers = with maintainers; [ leenaars];
+    platforms = platforms.linux;
+  };
+}