After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build a08b3a4d19.tar.gz \
--argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7
result/bin/apply-formatting $NIXPKGS_PATH
83 lines
2.0 KiB
Nix
83 lines
2.0 KiB
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
perl,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sloccount";
|
|
version = "2.26";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.dwheeler.com/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "0ayiwfjdh1946asah861ah9269s5xkc8p5fv1wnxs9znyaxs4zzs";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ perl ];
|
|
|
|
# Make sure the Flex-generated files are newer than the `.l' files, so that
|
|
# Flex isn't needed to recompile them.
|
|
patchPhase = ''
|
|
for file in *
|
|
do
|
|
if grep -q /usr/bin/perl "$file"
|
|
then
|
|
echo "patching \`$file'..."
|
|
substituteInPlace "$file" --replace \
|
|
"/usr/bin/perl" "${perl}/bin/perl"
|
|
fi
|
|
done
|
|
|
|
for file in *.l
|
|
do
|
|
touch "$(echo $file | sed -es'/\.l$/.c/g')"
|
|
done
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
];
|
|
|
|
doCheck = true;
|
|
checkPhase = ''HOME="$TMPDIR" PATH="$PWD:$PATH" make test'';
|
|
|
|
preInstall = ''
|
|
mkdir -p "$out/bin"
|
|
mkdir -p "$out/share/man/man1"
|
|
mkdir -p "$out/share/doc"
|
|
'';
|
|
|
|
postInstall = ''
|
|
for w in "$out/bin"/*; do
|
|
isScript "$w" || continue
|
|
wrapProgram "$w" --prefix PATH : "$out/bin"
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Set of tools for counting physical Source Lines of Code (SLOC)";
|
|
|
|
longDescription = ''
|
|
This is the home page of "SLOCCount", a set of tools for
|
|
counting physical Source Lines of Code (SLOC) in a large number
|
|
of languages of a potentially large set of programs. This suite
|
|
of tools was used in my papers More than a Gigabuck: Estimating
|
|
GNU/Linux's Size and Estimating Linux's Size to measure the SLOC
|
|
of entire GNU/Linux distributions, and my essay Linux Kernel
|
|
2.6: It's Worth More! Others have measured Debian GNU/Linux and
|
|
the Perl CPAN library using this tool suite.
|
|
'';
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
homepage = "https://www.dwheeler.com/sloccount/";
|
|
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|