1 { lib, stdenv, fetchFromGitHub, perl, jq }:
3 stdenv.mkDerivation rec {
5 version = "0.3.8-alpha";
7 src = fetchFromGitHub {
11 hash = "sha256-+6oZvMlfLVTDLRlqOpgdZP2YxT6Zlt13wBMFlryBrXY=";
14 nativeBuildInputs = [ perl ];
19 "--jq-prefix=${jq.lib}"
23 description = "World's fastest (simd) CSV parser, with an extensible CLI";
25 homepage = "https://github.com/liquidaty/zsv";
26 changelog = "https://github.com/liquidaty/zsv/releases/tag/v${version}";
27 license = licenses.mit;
28 maintainers = with maintainers; [ marsam ];
29 platforms = platforms.all;