2008-07-11 09:13:34 +00:00
|
|
|
{ fetchurl, stdenv, flex }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "splint-3.1.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.splint.org/downloads/${name}.src.tgz";
|
|
|
|
sha256 = "02pv8kscsrkrzip9r08pfs9xs98q74c52mlxzbii6cv6vx1vd3f7";
|
|
|
|
};
|
|
|
|
|
2017-10-02 22:10:55 +00:00
|
|
|
patches = [ ./tmpdir.patch ] ++ stdenv.lib.optional stdenv.isDarwin ./darwin.patch;
|
2008-07-11 09:13:34 +00:00
|
|
|
|
|
|
|
buildInputs = [ flex ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2013-08-06 19:20:47 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-07-11 09:13:34 +00:00
|
|
|
homepage = http://splint.org/;
|
2013-08-06 19:20:47 +00:00
|
|
|
description = "Annotation-assisted lightweight static analyzer for C";
|
2008-07-11 09:13:34 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2013-08-06 19:20:47 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-10-02 22:10:55 +00:00
|
|
|
platforms = platforms.unix;
|
2008-07-11 09:13:34 +00:00
|
|
|
};
|
2013-08-06 19:20:47 +00:00
|
|
|
}
|