nixpkgs/pkgs/by-name/lo/loccount/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

47 lines
1.3 KiB
Nix

{ lib, buildGoModule, fetchFromGitLab, python3 }:
buildGoModule rec {
pname = "loccount";
version = "2.16";
src = fetchFromGitLab {
owner = "esr";
repo = "loccount";
rev = version;
hash = "sha256-uHX45KZO6R0tgTU10csKLiVYZZ/ea2V6BwhF6vfKKtA=";
};
vendorHash = null;
excludedPackages = "tests";
nativeBuildInputs = [ python3 ];
ldflags = [ "-s" "-w" ];
preBuild = ''
patchShebangs --build tablegen.py
go generate
'';
meta = with lib; {
description = "Re-implementation of sloccount in Go";
mainProgram = "loccount";
longDescription = ''
loccount is a re-implementation of David A. Wheeler's sloccount tool
in Go. It is faster and handles more different languages. Because
it's one source file in Go, it is easier to maintain and extend than the
multi-file, multi-language implementation of the original.
The algorithms are largely unchanged and can be expected to produce
identical numbers for languages supported by both tools. Python is
an exception; loccount corrects buggy counting of single-quote multiline
literals in sloccount 2.26.
'';
homepage = "https://gitlab.com/esr/loccount";
downloadPage = "https://gitlab.com/esr/loccount/tree/master";
license = licenses.bsd2;
maintainers = with maintainers; [ calvertvl ];
};
}