2018-12-15 04:50:31 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
|
2013-03-16 14:59:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cloc-${version}";
|
2019-05-05 23:48:42 +02:00
|
|
|
version = "1.82";
|
2013-03-16 14:59:35 +01:00
|
|
|
|
2016-05-22 16:26:53 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlDanial";
|
|
|
|
repo = "cloc";
|
2019-05-05 23:48:42 +02:00
|
|
|
rev = version;
|
|
|
|
sha256 = "0fsz07z0slfg58512fmnlj8pnxkc360bgf7fclg60v9clvcjbjsw";
|
2013-03-16 14:59:35 +01:00
|
|
|
};
|
|
|
|
|
2017-11-02 13:54:20 +01:00
|
|
|
setSourceRoot = ''
|
|
|
|
sourceRoot=$(echo */Unix)
|
|
|
|
'';
|
2015-10-05 17:46:49 +02:00
|
|
|
|
2018-12-15 04:50:31 +01:00
|
|
|
buildInputs = [ makeWrapper ] ++ (with perlPackages; [
|
|
|
|
perl AlgorithmDiff ParallelForkManager RegexpCommon
|
|
|
|
]);
|
2013-03-16 14:59:35 +01:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
|
|
|
|
|
2016-05-22 16:26:53 +02:00
|
|
|
postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB";
|
|
|
|
|
2013-03-16 14:59:35 +01:00
|
|
|
meta = {
|
|
|
|
description = "A program that counts lines of source code";
|
2016-05-22 16:26:53 +02:00
|
|
|
homepage = https://github.com/AlDanial/cloc;
|
2013-03-16 14:59:35 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-05-22 16:26:53 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2017-09-14 11:47:24 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu rycee ];
|
2013-03-16 14:59:35 +01:00
|
|
|
};
|
|
|
|
}
|