depot/third_party/nixpkgs/pkgs/by-name/ta/tabiew/package.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
1.1 KiB
Nix

{ lib
, fetchFromGitHub
, rustPlatform
, installShellFiles
}:
rustPlatform.buildRustPackage rec {
pname = "tabiew";
version = "0.6.0";
src = fetchFromGitHub {
owner = "shshemi";
repo = "tabiew";
rev = "v${version}";
hash = "sha256-Sui2UX2EWXgtkU83tb2QP0EQCImAvWrR2dYkfXjqDdc=";
};
cargoHash = "sha256-QEuO5Jtv9xw9W2jI2g3pJENi/CQcFsC3PCc63v2Cd40=";
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;
};
}