nixpkgs/pkgs/by-name/cl/cloc/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, makeWrapper, perlPackages }:
2013-03-16 13:59:35 +00:00
2024-08-03 01:22:43 +00:00
let version = "2.02";
2023-08-23 08:34:30 +00:00
in stdenv.mkDerivation {
pname = "cloc";
2023-08-23 08:34:30 +00:00
inherit version;
2013-03-16 13:59:35 +00:00
src = fetchFromGitHub {
owner = "AlDanial";
repo = "cloc";
2021-05-07 19:34:43 +00:00
rev = "v${version}";
2024-08-03 01:22:43 +00:00
sha256 = "sha256-qTrBCCC2J8Ewt6GvYlnXU8F1iB31A1xTFXdkee8L0Os=";
2013-03-16 13:59:35 +00:00
};
setSourceRoot = ''
sourceRoot=$(echo */Unix)
'';
nativeBuildInputs = [ makeWrapper ];
buildInputs = with perlPackages; [
perl
AlgorithmDiff
ParallelForkManager
RegexpCommon
];
2013-03-16 13:59:35 +00:00
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB";
2023-08-23 08:34:30 +00:00
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
echo -n 'checking --version...'
$out/bin/cloc --version | grep '${version}' > /dev/null
echo ' ok'
cat > test.nix <<EOF
{a, b}: {
test = a
+ b;
}
EOF
echo -n 'checking lines in test.nix...'
$out/bin/cloc --quiet --csv test.nix | grep '1,Nix,0,0,4' > /dev/null
echo ' ok'
runHook postInstallCheck
'';
2013-03-16 13:59:35 +00:00
meta = {
description = "Program that counts lines of source code";
homepage = "https://github.com/AlDanial/cloc";
2024-04-26 11:35:31 +00:00
license = lib.licenses.gpl2Plus;
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ rycee ];
2023-11-27 01:17:53 +00:00
mainProgram = "cloc";
2013-03-16 13:59:35 +00:00
};
}