Merge pull request #212722 from tomodachi94/csvq

csvq: init at 1.17.11
This commit is contained in:
Thomas Gerbet 2023-01-29 11:19:36 +01:00 committed by GitHub
commit 0b06495d89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View File

@ -4185,6 +4185,8 @@ with pkgs;
csv2latex = callPackage ../tools/misc/csv2latex { };
csvq = callPackage ../development/tools/csvq { };
csvs-to-sqlite = callPackage ../tools/misc/csvs-to-sqlite { };
cucumber = callPackage ../development/tools/cucumber {};