36 lines
913 B
Nix
36 lines
913 B
Nix
{ stdenv, fetchFromGitHub, makeWrapper, perl
|
|
, AlgorithmDiff, ParallelForkManager, RegexpCommon
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cloc-${version}";
|
|
version = "1.80";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AlDanial";
|
|
repo = "cloc";
|
|
rev = "v${version}";
|
|
sha256 = "0zmkjpv4dbdr29x95j4i585wz4rxwlrkp6ldfr5wiw83h90n0ilp";
|
|
};
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */Unix)
|
|
'';
|
|
|
|
buildInputs = [
|
|
makeWrapper perl AlgorithmDiff ParallelForkManager RegexpCommon
|
|
];
|
|
|
|
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
|
|
|
|
postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB";
|
|
|
|
meta = {
|
|
description = "A program that counts lines of source code";
|
|
homepage = https://github.com/AlDanial/cloc;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu rycee ];
|
|
};
|
|
}
|