mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
buildPackages,
|
|
}:
|
|
let
|
|
version = "0.31.0";
|
|
in
|
|
buildGoModule {
|
|
pname = "csvtk";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shenwei356";
|
|
repo = "csvtk";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RfW7SiRcsN0F/+2bixLMNsqJCOSD1BQwlm4Zm2kogXM=";
|
|
};
|
|
|
|
vendorHash = "sha256-5RqAtnGioasbQxLltglCWitzb7mQgNYIE9IFkE0AOME=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall =
|
|
let
|
|
csvtkBin =
|
|
if stdenv.buildPlatform.canExecute stdenv.hostPlatform then
|
|
"$out"
|
|
else
|
|
lib.getBin buildPackages.csvtk;
|
|
in
|
|
''
|
|
for shell in bash zsh fish; do
|
|
${csvtkBin}/bin/csvtk genautocomplete --shell $shell --file csvtk.$shell
|
|
installShellCompletion csvtk.$shell
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cross-platform, efficient and practical CSV/TSV toolkit in Golang";
|
|
changelog = "https://github.com/shenwei356/csvtk/releases/tag/v${version}";
|
|
homepage = "https://github.com/shenwei356/csvtk";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
|
mainProgram = "csvtk";
|
|
};
|
|
}
|