2015-10-17 01:22:12 -07:00
|
|
|
{ fetchurl, stdenv, autogen }:
|
2011-06-04 14:46:07 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-10-17 01:22:12 -07:00
|
|
|
name = "complexity-${version}";
|
2016-05-15 04:13:51 -07:00
|
|
|
version = "1.10";
|
2011-06-04 14:46:07 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/complexity/${name}.tar.gz";
|
2016-05-15 04:13:51 -07:00
|
|
|
sha256 = "1vfns9xm7w0wrz12a3w15slrqnrfh6qxk15nv7qkj3irll3ff522";
|
2011-06-04 14:46:07 -07:00
|
|
|
};
|
|
|
|
|
2015-10-17 01:22:12 -07:00
|
|
|
buildInputs = [ autogen ];
|
2011-06-04 14:46:07 -07:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "C code complexity measurement tool";
|
2011-06-04 14:46:07 -07:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU Complexity is a tool designed for analyzing the complexity of C
|
|
|
|
program functions. It is very similar to the McCabe scoring, but
|
|
|
|
addresses several issues not considered in that scoring scheme.
|
|
|
|
'';
|
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2011-06-04 14:46:07 -07:00
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/complexity/;
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
2015-01-13 13:33:24 -08:00
|
|
|
maintainers = [ ];
|
2011-06-04 14:46:07 -07:00
|
|
|
};
|
|
|
|
}
|