2016-05-22 16:26:53 +02:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, perl, AlgorithmDiff, RegexpCommon }:
|
2013-03-16 14:59:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cloc-${version}";
|
2016-07-06 11:06:57 +02:00
|
|
|
version = "1.70";
|
2013-03-16 14:59:35 +01:00
|
|
|
|
2016-05-22 16:26:53 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlDanial";
|
|
|
|
repo = "cloc";
|
|
|
|
rev = "v${version}";
|
2016-07-06 11:06:57 +02:00
|
|
|
sha256 = "1abkfkjn4fxplq33cwqjmgxabk2x6ij2klqn0w4a0lj82a7xx10x";
|
2013-03-16 14:59:35 +01:00
|
|
|
};
|
|
|
|
|
2016-05-22 16:26:53 +02:00
|
|
|
sourceRoot = "cloc-v${version}-src/Unix";
|
2015-10-05 17:46:49 +02:00
|
|
|
|
2016-05-22 16:26:53 +02:00
|
|
|
buildInputs = [ makeWrapper perl AlgorithmDiff RegexpCommon ];
|
2013-03-16 14:59:35 +01:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
|
|
|
|
|
2016-05-22 16:26:53 +02:00
|
|
|
postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB";
|
|
|
|
|
2013-03-16 14:59:35 +01:00
|
|
|
meta = {
|
|
|
|
description = "A program that counts lines of source code";
|
2016-05-22 16:26:53 +02:00
|
|
|
homepage = https://github.com/AlDanial/cloc;
|
2013-03-16 14:59:35 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-05-22 16:26:53 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2014-08-27 13:56:37 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2013-03-16 14:59:35 +01:00
|
|
|
};
|
|
|
|
}
|