base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / zs / zsv / package.nix
blob0cfc77d010743e1cfe8a56f6b2f436897e5b129e
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=${lib.getLib jq}"
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 = [ ];
29     platforms = platforms.all;
30   };