biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / zsv / default.nix
blobc311a4de9df4e897cce166f14de2aa25621888d8
1 { lib, stdenv, fetchFromGitHub, perl, jq }:
3 stdenv.mkDerivation rec {
4   pname = "zsv";
5   version = "0.3.8-alpha";
7   src = fetchFromGitHub {
8     owner = "liquidaty";
9     repo = "zsv";
10     rev = "v${version}";
11     hash = "sha256-+6oZvMlfLVTDLRlqOpgdZP2YxT6Zlt13wBMFlryBrXY=";
12   };
14   nativeBuildInputs = [ perl ];
16   buildInputs = [ jq ];
18   configureFlags = [
19     "--jq-prefix=${jq.lib}"
20   ];
22   meta = with lib; {
23     description = "World's fastest (simd) CSV parser, with an extensible CLI";
24     mainProgram = "zsv";
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;
30   };