nixpkgs/pkgs/tools/text/topfew/default.nix
2024-06-28 20:11:36 +02:00

38 lines
748 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "topfew";
version = "2.0.0";
src = fetchFromGitHub {
owner = "timbray";
repo = "topfew";
rev = "v${version}";
hash = "sha256-P3K3IhgYkrxmEG2l7EQDVWQ+P7fOjUMUFrlAnY+8NmI=";
};
vendorHash = null;
nativeBuildInputs = [
installShellFiles
];
ldflags = [ "-s" "-w" ];
postInstall = ''
installManPage doc/tf.1
'';
meta = with lib; {
description = "Finds the fields (or combinations of fields) which appear most often in a stream of records";
homepage = "https://github.com/timbray/topfew";
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
mainProgram = "tf";
};
}