Add pmccabe, a tool that computes the cyclomatic complexity of C/C++ source.
svn path=/nixpkgs/trunk/; revision=12000
This commit is contained in:
parent
f9e018c80d
commit
32588e53ef
36
pkgs/development/tools/misc/pmccabe/default.nix
Normal file
36
pkgs/development/tools/misc/pmccabe/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ fetchurl, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pmccabe-2.4-CVS20070814";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://cvs.parisc-linux.org/download/${name}.tar.gz";
|
||||
sha256 = "0nqvfdf2cxx516nw0rwr3lhzhiyrnpc2jf45ldfwsdc9rm2nj3r9";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
sed -i "Makefile" \
|
||||
-"es|^[[:blank:]]*DESTDIR[[:blank:]]*=.*$|DESTDIR = $out|g ; \
|
||||
s|^[[:blank:]]*INSTALL[[:blank:]]*=.*$|INSTALL = install|g ; \
|
||||
s|/usr/|/|g"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "McCabe-style function complexity and line counting for C and C++";
|
||||
homepage = http://www.parisc-linux.org/~bame/pmccabe/;
|
||||
license = "GPLv2+";
|
||||
|
||||
longDescription = ''
|
||||
pmccabe calculates McCabe-style cyclomatic complexity for C and
|
||||
C++ source code. Per-function complexity may be used for
|
||||
spotting likely trouble spots and for estimating testing
|
||||
effort.
|
||||
|
||||
pmccabe also includes a non-commented line counter, decomment which
|
||||
only removes comments from source code; codechanges, a program to
|
||||
calculate the amount of change which has occurred between two source
|
||||
trees or files; and vifn, to invoke vi given a function name rather
|
||||
than a file name.
|
||||
'';
|
||||
};
|
||||
}
|
@ -2194,6 +2194,10 @@ let pkgs = rec {
|
||||
inherit fetchurl stdenv;
|
||||
});
|
||||
|
||||
pmccabe = import ../development/tools/misc/pmccabe {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
/**
|
||||
* pkgconfig is optionally taken from the stdenv to allow bootstrapping
|
||||
* of glib and pkgconfig itself on MinGW.
|
||||
|
Loading…
Reference in New Issue
Block a user