3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/analysis/splint/default.nix
Bjørn Forsman d0748afc5e splint: improve meta attributes
- don't repeat package name in description
- prefer licenses.gpl2Plus over free form "GPLv2+" license name
- add platform attribute so that splint will be available in the channel
2013-08-06 21:20:47 +02:00

33 lines
894 B
Nix

{ 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 = with stdenv.lib; {
homepage = http://splint.org/;
description = "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 = licenses.gpl2Plus;
platforms = platforms.linux;
};
}