a66bca1520
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
39 lines
866 B
Nix
39 lines
866 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, sqlite
|
|
, openssl
|
|
, buildllvmsparse ? false
|
|
, buildc2xml ? false
|
|
, libllvm
|
|
, libxml2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smatch";
|
|
version = "1.73";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "error27";
|
|
repo = "smatch";
|
|
rev = version;
|
|
sha256 = "sha256-Pv3bd2cjnQKnhH7TrkYWfDEeaq6u/q/iK1ZErzn6bME=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ sqlite openssl ]
|
|
++ lib.optionals buildllvmsparse [ libllvm ]
|
|
++ lib.optionals buildc2xml [ libxml2.dev ];
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" "CXX=${stdenv.cc.targetPrefix}c++" ];
|
|
|
|
meta = with lib; {
|
|
description = "A semantic analysis tool for C";
|
|
homepage = "https://sparse.docs.kernel.org/";
|
|
maintainers = with maintainers; [ marsam ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|