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