2016-05-22 15:26:53 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, perl, AlgorithmDiff, RegexpCommon }:
|
2013-03-16 13:59:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cloc-${version}";
|
2017-01-17 08:28:02 +00:00
|
|
|
version = "1.72";
|
2013-03-16 13:59:35 +00:00
|
|
|
|
2016-05-22 15:26:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AlDanial";
|
|
|
|
repo = "cloc";
|
|
|
|
rev = "v${version}";
|
2017-01-17 08:28:02 +00:00
|
|
|
sha256 = "192z3fzib71y3sjic03ll67xv51igdlpvfhx12yv9wnzkir7lx02";
|
2013-03-16 13:59:35 +00:00
|
|
|
};
|
|
|
|
|
2016-05-22 15:26:53 +01:00
|
|
|
sourceRoot = "cloc-v${version}-src/Unix";
|
2015-10-05 16:46:49 +01:00
|
|
|
|
2016-05-22 15:26:53 +01:00
|
|
|
buildInputs = [ makeWrapper perl AlgorithmDiff RegexpCommon ];
|
2013-03-16 13:59:35 +00:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
|
|
|
|
|
2016-05-22 15:26:53 +01:00
|
|
|
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";
|
2016-05-22 15:26:53 +01:00
|
|
|
homepage = https://github.com/AlDanial/cloc;
|
2013-03-16 13:59:35 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-05-22 15:26:53 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|