2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 01:54:34 +00:00
nixpkgs/pkgs/by-name/ta/tabiew/package.nix
2024-12-13 03:39:29 +00:00

48 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
installShellFiles,
}:
rustPlatform.buildRustPackage rec {
pname = "tabiew";
version = "0.8.0";
src = fetchFromGitHub {
owner = "shshemi";
repo = "tabiew";
rev = "v${version}";
hash = "sha256-/AfhYr93OOtI2I8IDrXXH1zhCJcXNZM19RuKfOe5ikk=";
};
cargoHash = "sha256-j68IAbjc9xlb9QKdXKmxjI9OTenDSrZoqZ5UJeLGJes=";
nativeBuildInputs = [ installShellFiles ];
outputs = [
"out"
"man"
];
postInstall = ''
installManPage target/manual/tabiew.1
installShellCompletion \
--bash target/completion/tw.bash \
--zsh target/completion/_tw \
--fish target/completion/tw.fish
'';
doCheck = false; # there are no tests
meta = {
description = "Lightweight, terminal-based application to view and query delimiter separated value formatted documents, such as CSV and TSV files";
homepage = "https://github.com/shshemi/tabiew";
changelog = "https://github.com/shshemi/tabiew/releases/tag/v${version}";
license = lib.licenses.mit;
mainProgram = "tw";
maintainers = with lib.maintainers; [ anas ];
platforms = with lib.platforms; unix ++ windows;
};
}