mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
csvq: init at 1.17.11
This commit is contained in:
parent
e1cf19931b
commit
3432428bf7
2 changed files with 25 additions and 0 deletions
23
pkgs/development/tools/csvq/default.nix
Normal file
23
pkgs/development/tools/csvq/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "csvq";
|
||||||
|
version = "1.17.11";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mithrandie";
|
||||||
|
repo = "csvq";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-jhj03xpWBcLVCCk1S9nsi8O6x1/IVwNT3voGfWBg2iw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-C+KQHSp4aho+DPlkaYegjYSaoSHaLiQOa1WJXIn9FdQ=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "SQL-like query language for CSV";
|
||||||
|
homepage = "https://mithrandie.github.io/csvq/";
|
||||||
|
changelog = "https://github.com/mithrandie/csvq/releases/tag/v${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ tomodachi94 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4167,6 +4167,8 @@ with pkgs;
|
||||||
|
|
||||||
csv2latex = callPackage ../tools/misc/csv2latex { };
|
csv2latex = callPackage ../tools/misc/csv2latex { };
|
||||||
|
|
||||||
|
csvq = callPackage ../development/tools/csvq { };
|
||||||
|
|
||||||
csvs-to-sqlite = callPackage ../tools/misc/csvs-to-sqlite { };
|
csvs-to-sqlite = callPackage ../tools/misc/csvs-to-sqlite { };
|
||||||
|
|
||||||
cucumber = callPackage ../development/tools/cucumber {};
|
cucumber = callPackage ../development/tools/cucumber {};
|
||||||
|
|
Loading…
Reference in a new issue