3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/cloc/default.nix

36 lines
913 B
Nix
Raw Normal View History

2018-02-13 20:14:13 +00:00
{ stdenv, fetchFromGitHub, makeWrapper, perl
, AlgorithmDiff, ParallelForkManager, RegexpCommon
}:
2013-03-16 13:59:35 +00:00
stdenv.mkDerivation rec {
name = "cloc-${version}";
2018-10-12 18:01:51 +01:00
version = "1.80";
2013-03-16 13:59:35 +00:00
src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
2018-10-12 18:01:51 +01:00
rev = "v${version}";
sha256 = "0zmkjpv4dbdr29x95j4i585wz4rxwlrkp6ldfr5wiw83h90n0ilp";
2013-03-16 13:59:35 +00:00
};
setSourceRoot = ''
sourceRoot=$(echo */Unix)
'';
2018-02-13 20:14:13 +00:00
buildInputs = [
makeWrapper perl AlgorithmDiff ParallelForkManager RegexpCommon
];
2013-03-16 13:59:35 +00:00
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
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";
homepage = https://github.com/AlDanial/cloc;
2013-03-16 13:59:35 +00:00
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
2017-09-14 10:47:24 +01:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu rycee ];
2013-03-16 13:59:35 +00:00
};
}