Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / analysis / splint / default.nix
blob954342550eac4eaea569d609eadd1ea00b86887d
1 { fetchurl, lib, stdenv, flex }:
3 stdenv.mkDerivation rec {
4   pname = "splint";
5   version = "3.1.2";
7   src = fetchurl {
8     url = "https://www.splint.org/downloads/${pname}-${version}.src.tgz";
9     sha256 = "02pv8kscsrkrzip9r08pfs9xs98q74c52mlxzbii6cv6vx1vd3f7";
10   };
12   patches = [ ./tmpdir.patch ] ++ lib.optional stdenv.isDarwin ./darwin.patch;
14   buildInputs = [ flex ];
16   doCheck = true;
18   meta = with lib; {
19     homepage = "http://www.splint.org/";
20     description = "Annotation-assisted lightweight static analyzer for C";
22     longDescription = ''
23       Splint is a tool for statically checking C programs for security
24       vulnerabilities and coding mistakes.  With minimal effort, Splint
25       can be used as a better lint.  If additional effort is invested
26       adding annotations to programs, Splint can perform stronger
27       checking than can be done by any standard lint.
28     '';
30     license = licenses.gpl2Plus;
31     platforms = platforms.unix;
32   };