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