about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/splint/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/analysis/splint/default.nix')
-rw-r--r--pkgs/development/tools/analysis/splint/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/tools/analysis/splint/default.nix b/pkgs/development/tools/analysis/splint/default.nix
new file mode 100644
index 000000000000..cb804b9e6b0d
--- /dev/null
+++ b/pkgs/development/tools/analysis/splint/default.nix
@@ -0,0 +1,31 @@
+{ fetchurl, stdenv, flex }:
+
+stdenv.mkDerivation rec {
+  name = "splint-3.1.2";
+
+  src = fetchurl {
+    url = "http://www.splint.org/downloads/${name}.src.tgz";
+    sha256 = "02pv8kscsrkrzip9r08pfs9xs98q74c52mlxzbii6cv6vx1vd3f7";
+  };
+
+  patches = [ ./tmpdir.patch ];
+
+  buildInputs = [ flex ];
+
+  doCheck = true;
+
+  meta = {
+    homepage = http://splint.org/;
+    description = "Splint, an annotation-assisted lightweight static analyzer for C";
+
+    longDescription = ''
+      Splint is a tool for statically checking C programs for security
+      vulnerabilities and coding mistakes.  With minimal effort, Splint
+      can be used as a better lint.  If additional effort is invested
+      adding annotations to programs, Splint can perform stronger
+      checking than can be done by any standard lint.
+    '';
+
+    license = "GPLv2+";
+  };
+}
\ No newline at end of file