summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/coan
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-11 15:21:25 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-11 15:21:26 +0100
commit03e53af0f5b30e097239bbe921d2d8ccf754d3c7 (patch)
tree00005b9fdb14c4f0ccb8fe9de04e28d379678b85 /pkgs/development/tools/analysis/coan
parent7fa32aecd183f4fcede821a2b0c60a925c0e2ef5 (diff)
Add coan: the C preprocessor chainsaw
Diffstat (limited to 'pkgs/development/tools/analysis/coan')
-rw-r--r--pkgs/development/tools/analysis/coan/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/tools/analysis/coan/default.nix b/pkgs/development/tools/analysis/coan/default.nix
new file mode 100644
index 0000000000000..0c0f60a507abe
--- /dev/null
+++ b/pkgs/development/tools/analysis/coan/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, perl }:
+
+stdenv.mkDerivation rec {
+  version = "6.0.1";
+  name = "coan-${version}";
+
+  src = fetchurl {
+    url = "http://downloads.sourceforge.net/project/coan2/v${version}/${name}.tar.gz";
+    sha256 = "1d041j0nd1hc0562lbj269dydjm4rbzagdgzdnmwdxr98544yw44";
+  };
+
+  buildInputs = [ perl ];
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    description = "The C preprocessor chainsaw";
+    longDescription = ''
+      A software engineering tool for analysing preprocessor-based
+      configurations of C or C++ source code. Its principal use is to simplify
+      a body of source code by eliminating any parts that are redundant with
+      respect to a specified configuration. Dead code removal is an
+      application of this sort.
+    '';
+    homepage = http://coan2.sourceforge.net/;
+    license = with licenses; bsd3;
+    platforms = with platforms; all;
+    maintainers = with maintainers; [ nckx ];
+  };
+}