Files
Sebastian Blunt 190bd87264 splint: Build with gnu99
Otherwise it fails to build with
```
mtgrammar.c:139:37: error: too many arguments to function 'yyprint'; expected 0, have 3
```
See https://github.com/splintchecker/splint/issues/41 for the upstream
issue.
2026-04-26 02:37:12 -07:00

44 lines
1.0 KiB
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.hostPlatform.isDarwin ./darwin.patch;
buildInputs = [ flex ];
buildFlags = [
"CFLAGS=-std=gnu99"
];
doCheck = true;
meta = {
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 = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
};
}