2018-02-13 12:14:13 -08:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, perl
|
|
|
|
, AlgorithmDiff, ParallelForkManager, RegexpCommon
|
|
|
|
}:
|
2013-03-16 06:59:35 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cloc-${version}";
|
2018-10-12 10:01:51 -07:00
|
|
|
version = "1.80";
|
2013-03-16 06:59:35 -07:00
|
|
|
|
2016-05-22 07:26:53 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlDanial";
|
|
|
|
repo = "cloc";
|
2018-10-12 10:01:51 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0zmkjpv4dbdr29x95j4i585wz4rxwlrkp6ldfr5wiw83h90n0ilp";
|
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
|
|
|
|
2018-02-13 12:14:13 -08:00
|
|
|
buildInputs = [
|
|
|
|
makeWrapper 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";
|
2016-05-22 07:26:53 -07:00
|
|
|
homepage = https://github.com/AlDanial/cloc;
|
2013-03-16 06:59:35 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-05-22 07:26:53 -07:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2017-09-14 02:47:24 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu rycee ];
|
2013-03-16 06:59:35 -07:00
|
|
|
};
|
|
|
|
}
|