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

26 lines
638 B
Nix
Raw Normal View History

2013-03-16 13:59:35 +00:00
{ stdenv, fetchurl, perl, AlgorithmDiff, RegexpCommon }:
stdenv.mkDerivation rec {
2014-08-27 11:56:37 +00:00
2013-03-16 13:59:35 +00:00
name = "cloc-${version}";
2015-07-01 18:41:40 +00:00
version = "1.64";
2013-03-16 13:59:35 +00:00
src = fetchurl {
url = "mirror://sourceforge/cloc/cloc-${version}.tar.gz";
2015-07-01 18:41:40 +00:00
sha256 = "1w3mz69h2i7pscvi9q7yp7wimds8g38c5ph78cj5pvjl5wa035rh";
2013-03-16 13:59:35 +00:00
};
buildInputs = [ perl AlgorithmDiff RegexpCommon ];
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
meta = {
description = "A program that counts lines of source code";
homepage = http://cloc.sourceforge.net;
license = stdenv.lib.licenses.gpl2;
2014-08-27 11:56:37 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-03-16 13:59:35 +00:00
};
}