2017-04-16 08:53:05 +01:00
|
|
|
{ stdenv, fetchurl, libxslt, docbook_xsl, docbook_xml_dtd_45, pcre }:
|
2012-02-15 16:07:45 +00:00
|
|
|
|
2016-03-05 17:33:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-07-17 10:52:13 +01:00
|
|
|
pname = "cppcheck";
|
2018-06-14 16:25:37 +01:00
|
|
|
version = "1.84";
|
2016-03-05 17:33:53 +00:00
|
|
|
name = "${pname}-${version}";
|
2012-02-15 16:07:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-05 17:33:53 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${name}.tar.bz2";
|
2018-06-14 16:25:37 +01:00
|
|
|
sha256 = "1rp8j0akxzcpvr2na5zchz8zxq5ldngiwj7f6sibjq5p3dcyn2w5";
|
2012-02-15 16:07:45 +00:00
|
|
|
};
|
|
|
|
|
2017-04-16 08:53:05 +01:00
|
|
|
buildInputs = [ pcre ];
|
2016-03-07 18:35:38 +00:00
|
|
|
nativeBuildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ];
|
2014-05-08 13:27:48 +01:00
|
|
|
|
2017-04-16 08:53:05 +01:00
|
|
|
makeFlags = ''PREFIX=$(out) CFGDIR=$(out)/cfg HAVE_RULES=yes'';
|
2015-05-02 23:22:23 +01:00
|
|
|
|
2016-04-15 16:18:29 +01:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2016-10-21 14:56:20 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-02 23:22:23 +01:00
|
|
|
postInstall = ''
|
|
|
|
make DB2MAN=${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl man
|
2016-04-15 16:18:29 +01:00
|
|
|
mkdir -p $man/share/man/man1
|
|
|
|
cp cppcheck.1 $man/share/man/man1/cppcheck.1
|
2015-05-02 23:22:23 +01:00
|
|
|
'';
|
2012-02-15 16:07:45 +00:00
|
|
|
|
2016-03-05 17:33:53 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-02 23:22:23 +01:00
|
|
|
description = "A static analysis tool for C/C++ code";
|
|
|
|
longDescription = ''
|
2016-07-17 10:52:13 +01:00
|
|
|
Check C/C++ code for memory leaks, mismatching allocation-deallocation,
|
|
|
|
buffer overruns and more.
|
2015-05-02 23:22:23 +01:00
|
|
|
'';
|
|
|
|
homepage = http://cppcheck.sourceforge.net/;
|
2016-03-05 17:33:53 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with maintainers; [ joachifm ];
|
2012-02-15 16:07:45 +00:00
|
|
|
};
|
|
|
|
}
|