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

30 lines
846 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}";
2016-07-06 10:06:57 +01:00
version = "1.70";
2013-03-16 13:59:35 +00:00
src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
rev = "v${version}";
2016-07-06 10:06:57 +01:00
sha256 = "1abkfkjn4fxplq33cwqjmgxabk2x6ij2klqn0w4a0lj82a7xx10x";
2013-03-16 13:59:35 +00:00
};
sourceRoot = "cloc-v${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 12:56:37 +01:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-03-16 13:59:35 +00:00
};
}