csvtk: 0.30.0 -> 0.31.0 (#352877)

This commit is contained in:
Nikolay Korotkiy 2024-11-02 02:14:55 +04:00 committed by GitHub
commit 1c498560a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,10 +1,13 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
installShellFiles,
buildPackages,
}:
let
version = "0.30.0";
version = "0.31.0";
in
buildGoModule {
pname = "csvtk";
@ -14,10 +17,27 @@ buildGoModule {
owner = "shenwei356";
repo = "csvtk";
rev = "refs/tags/v${version}";
hash = "sha256-xq56dErO0vjG9bZ5aISIFWX4IOHaQksE9W1is2HiFuQ=";
hash = "sha256-RfW7SiRcsN0F/+2bixLMNsqJCOSD1BQwlm4Zm2kogXM=";
};
vendorHash = "sha256-wJedDF7QIg8oWc/QX+rZDyq/nkAW+PMb8EYb0RGJxQM=";
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";