cppcheck: 0.76.1 -> 0.78 (#24937)

* cppcheck: 0.76.1 -> 0.78

* cppcheck: enable rule-file support
This commit is contained in:
Guillaume Maudoux 2017-04-16 09:53:05 +02:00 committed by Jörg Thalheim
parent 787c40677f
commit 605ce9b241
1 changed files with 5 additions and 4 deletions

View File

@ -1,18 +1,19 @@
{ stdenv, fetchurl, libxslt, docbook_xsl, docbook_xml_dtd_45 }:
{ stdenv, fetchurl, libxslt, docbook_xsl, docbook_xml_dtd_45, pcre }:
stdenv.mkDerivation rec {
pname = "cppcheck";
version = "1.76.1";
version = "1.78";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.bz2";
sha256 = "1l46bmzm5syfr9m5l0bqkj8lcyrynhw8gjf95s4fwhp2b7f0zisv";
sha256 = "1cc60y2vjq4g88183jkan91ybzqy0n6p5ncs8z5rh6rjsvvrc9p4";
};
buildInputs = [ pcre ];
nativeBuildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ];
makeFlags = ''PREFIX=$(out) CFGDIR=$(out)/cfg'';
makeFlags = ''PREFIX=$(out) CFGDIR=$(out)/cfg HAVE_RULES=yes'';
outputs = [ "out" "man" ];