Files
nixpkgs/pkgs/by-name/ta/tabiew/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
installShellFiles,
perl,
}:
rustPlatform.buildRustPackage rec {
pname = "tabiew";
version = "0.11.1";
src = fetchFromGitHub {
owner = "shshemi";
repo = "tabiew";
tag = "v${version}";
hash = "sha256-RvbHXnDaoqMHjA9u9kFs5MB6xeQG/E35PEu+1LIXIBU=";
};
cargoHash = "sha256-F+5Iy8eY5s+EfMqx4z4mh0SVoBwwnbM33c3yE7FUy4g=";
nativeBuildInputs = [
installShellFiles
perl
];
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;
};
}