about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/complexity/default.nix
blob: 71ed762df040ab34ecab5bf8e17c6a8023e8c636 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ fetchurl, stdenv, autogen }:

stdenv.mkDerivation rec {
  pname = "complexity";
  version = "1.10";

  src = fetchurl {
    url = "mirror://gnu/complexity/${pname}-${version}.tar.gz";
    sha256 = "1vfns9xm7w0wrz12a3w15slrqnrfh6qxk15nv7qkj3irll3ff522";
  };

  buildInputs = [ autogen ];

  doCheck = true;

  meta = {
    description = "C code complexity measurement tool";

    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;

    homepage = "https://www.gnu.org/software/complexity/";

    platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
    maintainers = [ ];
  };
}