mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
35 lines
1001 B
Nix
35 lines
1001 B
Nix
{ fetchurl, lib, stdenv, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "splint";
|
|
version = "3.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.splint.org/downloads/${pname}-${version}.src.tgz";
|
|
sha256 = "02pv8kscsrkrzip9r08pfs9xs98q74c52mlxzbii6cv6vx1vd3f7";
|
|
};
|
|
|
|
patches = [ ./tmpdir.patch ] ++ lib.optional stdenv.isDarwin ./darwin.patch;
|
|
|
|
buildInputs = [ flex ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.splint.org/";
|
|
description = "Annotation-assisted lightweight static analyzer for C";
|
|
mainProgram = "splint";
|
|
|
|
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.unix;
|
|
};
|
|
}
|