zsv: init at 2022-11-12

This commit is contained in:
Mario Rodas 2022-11-11 04:20:00 +00:00
parent 3a09cdcd9c
commit 2ff815c01f
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub, perl, jq }:
stdenv.mkDerivation rec {
pname = "zsv";
version = "unstable-2022-11-12";
src = fetchFromGitHub {
owner = "liquidaty";
repo = "zsv";
rev = "058a990e2086e639d1e11ed8b2ae81b03e4bfcac";
sha256 = "sha256-V1wkwNSpMsSpaL/j4z4TN59W1+Xn6MYMEWBdwdtTz+s=";
};
nativeBuildInputs = [ perl ];
buildInputs = [ jq ];
configureFlags = [
"--jq-prefix=${jq.lib}"
];
meta = with lib; {
description = "World's fastest (simd) CSV parser, with an extensible CLI";
homepage = "https://github.com/liquidaty/zsv";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
platforms = platforms.all;
};
}

View File

@ -13248,6 +13248,8 @@ with pkgs;
cmake = buildPackages.cmakeMinimal;
};
zsv = callPackage ../development/tools/zsv { };
zsync = callPackage ../tools/compression/zsync { };
zxing = callPackage ../tools/graphics/zxing {};