nixpkgs/pkgs/tools/misc/cloc/default.nix

34 lines
892 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
2013-03-16 13:59:35 +00:00
stdenv.mkDerivation rec {
name = "cloc-${version}";
2019-05-05 21:48:42 +00:00
version = "1.82";
2013-03-16 13:59:35 +00:00
src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
2019-05-05 21:48:42 +00:00
rev = version;
sha256 = "0fsz07z0slfg58512fmnlj8pnxkc360bgf7fclg60v9clvcjbjsw";
2013-03-16 13:59:35 +00:00
};
setSourceRoot = ''
sourceRoot=$(echo */Unix)
'';
buildInputs = [ makeWrapper ] ++ (with perlPackages; [
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 09:47:24 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu rycee ];
2013-03-16 13:59:35 +00:00
};
}