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

33 lines
879 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
2013-03-16 13:59:35 +00:00
stdenv.mkDerivation rec {
pname = "cloc";
2021-05-07 19:34:43 +00:00
version = "1.90";
2013-03-16 13:59:35 +00:00
src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
2021-05-07 19:34:43 +00:00
rev = "v${version}";
sha256 = "0ic9q6qqw5f1wafp9lpmhr0miasbdb9zr59c0jlymnzffdmnliyc";
2013-03-16 13:59:35 +00:00
};
setSourceRoot = ''
sourceRoot=$(echo */Unix)
'';
nativeBuildInputs = [ makeWrapper ];
buildInputs = (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";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ rycee ];
2013-03-16 13:59:35 +00:00
};
}