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

30 lines
839 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, makeWrapper, perl, AlgorithmDiff, RegexpCommon }:
2013-03-16 13:59:35 +00:00
stdenv.mkDerivation rec {
name = "cloc-${version}";
2017-09-14 09:46:39 +00:00
version = "1.74";
2013-03-16 13:59:35 +00:00
src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
2017-09-14 09:46:39 +00:00
rev = version;
sha256 = "1ihma4f6f92jp1mvzr4rjrgyh9m5wzrlxngaxfn7g0a8r2kyi65b";
2013-03-16 13:59:35 +00:00
};
2017-09-14 09:46:39 +00:00
sourceRoot = "cloc-${version}-src/Unix";
buildInputs = [ makeWrapper perl AlgorithmDiff 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;
2014-08-27 11:56:37 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-03-16 13:59:35 +00:00
};
}