2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
|
2013-03-16 13:59:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cloc";
|
2021-12-06 09:43:23 +00:00
|
|
|
version = "1.92";
|
2013-03-16 13:59:35 +00:00
|
|
|
|
2016-05-22 14:26:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlDanial";
|
|
|
|
repo = "cloc";
|
2021-05-07 19:34:43 +00:00
|
|
|
rev = "v${version}";
|
2021-12-07 21:25:56 +00:00
|
|
|
sha256 = if stdenv.isDarwin then
|
|
|
|
"1hy1hskiw02b7xaxn2qz0v7znj14l49w1anx20z6rkcps7212l5l"
|
|
|
|
else
|
|
|
|
"sha256-tFARxNGXzWw+EN2qwBOhJEj7zwYfC9tVP0sAHqeGwcM=";
|
2013-03-16 13:59:35 +00:00
|
|
|
};
|
|
|
|
|
2017-11-02 12:54:20 +00:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */Unix)
|
|
|
|
'';
|
2015-10-05 15:46:49 +00:00
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2021-12-07 21:25:56 +00:00
|
|
|
buildInputs = with perlPackages; [
|
|
|
|
perl
|
|
|
|
AlgorithmDiff
|
|
|
|
ParallelForkManager
|
|
|
|
RegexpCommon
|
|
|
|
];
|
2013-03-16 13:59:35 +00:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
|
|
|
|
|
2016-05-22 14:26:53 +00:00
|
|
|
postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB";
|
|
|
|
|
2013-03-16 13:59:35 +00:00
|
|
|
meta = {
|
|
|
|
description = "A program that counts lines of source code";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/AlDanial/cloc";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = with lib.maintainers; [ rycee ];
|
2013-03-16 13:59:35 +00:00
|
|
|
};
|
|
|
|
}
|