mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
zsv: init at 2022-11-12
This commit is contained in:
parent
3a09cdcd9c
commit
2ff815c01f
29
pkgs/development/tools/zsv/default.nix
Normal file
29
pkgs/development/tools/zsv/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -13248,6 +13248,8 @@ with pkgs;
|
||||
cmake = buildPackages.cmakeMinimal;
|
||||
};
|
||||
|
||||
zsv = callPackage ../development/tools/zsv { };
|
||||
|
||||
zsync = callPackage ../tools/compression/zsync { };
|
||||
|
||||
zxing = callPackage ../tools/graphics/zxing {};
|
||||
|
Loading…
Reference in New Issue
Block a user