Files
nixpkgs/pkgs/development/tools/misc/complexity/default.nix
T

33 lines
838 B
Nix
Raw Normal View History

2015-10-17 10:22:12 +02:00
{ fetchurl, stdenv, autogen }:
2011-06-04 21:46:07 +00:00
stdenv.mkDerivation rec {
2015-10-17 10:22:12 +02:00
name = "complexity-${version}";
2016-05-15 13:13:51 +02:00
version = "1.10";
2011-06-04 21:46:07 +00:00
src = fetchurl {
url = "mirror://gnu/complexity/${name}.tar.gz";
2016-05-15 13:13:51 +02:00
sha256 = "1vfns9xm7w0wrz12a3w15slrqnrfh6qxk15nv7qkj3irll3ff522";
2011-06-04 21:46:07 +00:00
};
2015-10-17 10:22:12 +02:00
buildInputs = [ autogen ];
2011-06-04 21:46:07 +00:00
doCheck = true;
meta = {
2014-08-24 16:21:08 +02:00
description = "C code complexity measurement tool";
2011-06-04 21:46:07 +00: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.
'';
license = stdenv.lib.licenses.gpl3Plus;
2011-06-04 21:46:07 +00:00
homepage = http://www.gnu.org/software/complexity/;
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
2015-01-13 22:33:24 +01:00
maintainers = [ ];
2011-06-04 21:46:07 +00:00
};
}