2018-12-15 03:50:31 +00:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
|
2013-03-16 13:59:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cloc";
|
2020-05-20 09:45:14 +01:00
|
|
|
version = "1.86";
|
2013-03-16 13:59:35 +00:00
|
|
|
|
2016-05-22 15:26:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlDanial";
|
|
|
|
repo = "cloc";
|
2019-05-05 22:48:42 +01:00
|
|
|
rev = version;
|
2020-05-20 09:45:14 +01:00
|
|
|
sha256 = "082gj2b3x11bilz8c572dd60vn6n0fhld5zhi7wk7g1wy9wlgm9w";
|
2013-03-16 13:59:35 +00:00
|
|
|
};
|
|
|
|
|
2017-11-02 12:54:20 +00:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */Unix)
|
|
|
|
'';
|
2015-10-05 16:46:49 +01:00
|
|
|
|
2018-12-15 03:50:31 +00:00
|
|
|
buildInputs = [ makeWrapper ] ++ (with perlPackages; [
|
|
|
|
perl AlgorithmDiff ParallelForkManager RegexpCommon
|
|
|
|
]);
|
2013-03-16 13:59:35 +00:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
|
|
|
|
|
2016-05-22 15:26:53 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://github.com/AlDanial/cloc";
|
2013-03-16 13:59:35 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-05-22 15:26:53 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ rycee ];
|
2013-03-16 13:59:35 +00:00
|
|
|
};
|
|
|
|
}
|