Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e186bdf631fa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b33be5208474
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 10, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    picnoir Félix
    Copy the full SHA
    b33be52 View commit details
Showing with 19 additions and 39 deletions.
  1. +19 −39 pkgs/development/tools/misc/sloccount/default.nix
58 changes: 19 additions & 39 deletions pkgs/development/tools/misc/sloccount/default.nix
Original file line number Diff line number Diff line change
@@ -1,54 +1,37 @@
{ fetchurl, stdenv, perl, makeWrapper }:
{ stdenv, fetchurl, perlPackages, coreutils, flex, glibcLocales, makeWrapper }:

stdenv.mkDerivation rec {
name = "sloccount-2.26";
perlPackages.buildPerlPackage rec {
pname = "sloccount";
version = "2.26";

src = fetchurl {
url = "https://www.dwheeler.com/sloccount/${name}.tar.gz";
url = "https://www.dwheeler.com/sloccount/${pname}-${version}.tar.gz";
sha256 = "0ayiwfjdh1946asah861ah9269s5xkc8p5fv1wnxs9znyaxs4zzs";
};

nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perl ];
# needed for the standard buildPerlPackage builder
postPatch = "touch Makefile.PL";

# 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
nativeBuildInputs = [ flex makeWrapper ];

for file in *.l
do
touch "$(echo $file | sed -es'/\.l$/.c/g')"
done
'';
outputs = [ "out" ];

makeFlags = [ "PREFIX=$(out)" "CC=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"
'';
preInstall = "mkdir -p $out/bin";

# coreutils is needed for wc and md5sum
postInstall = ''
for w in "$out/bin"/*; do
isScript "$w" || continue
wrapProgram "$w" --prefix PATH : "$out/bin"
done
'';
mv $out/bin $out/libexec
meta = {
makeWrapper $out/libexec/sloccount $out/bin/sloccount \
--prefix PATH : $out/libexec:${stdenv.lib.makeBinPath [ coreutils ]} \
--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive
'';

meta = with stdenv.lib; {
description = "Set of tools for counting physical Source Lines of Code (SLOC)";

longDescription = ''
@@ -62,11 +45,8 @@ stdenv.mkDerivation rec {
the Perl CPAN library using this tool suite.
'';

license = stdenv.lib.licenses.gpl2Plus;

homepage = "https://www.dwheeler.com/sloccount/";

license = licenses.gpl2Plus;
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
};
}