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