mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
csvtk: init at 0.30.0 (#328866)
This commit is contained in:
commit
0e3bd13299
30
pkgs/by-name/cs/csvtk/package.nix
Normal file
30
pkgs/by-name/cs/csvtk/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
let
|
||||
version = "0.30.0";
|
||||
in
|
||||
buildGoModule {
|
||||
pname = "csvtk";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "shenwei356";
|
||||
repo = "csvtk";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-xq56dErO0vjG9bZ5aISIFWX4IOHaQksE9W1is2HiFuQ=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-wJedDF7QIg8oWc/QX+rZDyq/nkAW+PMb8EYb0RGJxQM=";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user