xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / cc / cccc / package.nix
blob0629cda4e5c8d7e057d089800ef6286ba790f6aa
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "cccc";
9   version = "3.1.4";
11   src = fetchurl {
12     url = "mirror://sourceforge/cccc/${version}/cccc-${version}.tar.gz";
13     sha256 = "1gsdzzisrk95kajs3gfxks3bjvfd9g680fin6a9pjrism2lyrcr7";
14   };
16   hardeningDisable = [ "format" ];
18   patches = [ ./cccc.patch ];
20   preConfigure = ''
21     substituteInPlace install/install.mak --replace /usr/local/bin $out/bin
22     substituteInPlace install/install.mak --replace MKDIR=mkdir "MKDIR=mkdir -p"
23   '';
24   buildFlags = [
25     "CCC=c++"
26     "LD=c++"
27   ];
29   meta = {
30     description = "C and C++ Code Counter";
31     mainProgram = "cccc";
32     longDescription = ''
33       CCCC is a tool which analyzes C++ and Java files and generates a report
34       on various metrics of the code. Metrics supported include lines of code, McCabe's
35       complexity and metrics proposed by Chidamber&Kemerer and Henry&Kafura.
36     '';
37     homepage = "https://cccc.sourceforge.net/";
38     license = lib.licenses.gpl2;
39     platforms = lib.platforms.unix;
40     maintainers = [ lib.maintainers.linquize ];
41   };