depot/pkgs/development/tools/zsv/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
744 B
Nix

{ lib, stdenv, fetchFromGitHub, perl, jq }:
stdenv.mkDerivation rec {
pname = "zsv";
version = "0.3.8-alpha";
src = fetchFromGitHub {
owner = "liquidaty";
repo = "zsv";
rev = "v${version}";
hash = "sha256-+6oZvMlfLVTDLRlqOpgdZP2YxT6Zlt13wBMFlryBrXY=";
};
nativeBuildInputs = [ perl ];
buildInputs = [ jq ];
configureFlags = [
"--jq-prefix=${lib.getLib jq}"
];
meta = with lib; {
description = "World's fastest (simd) CSV parser, with an extensible CLI";
mainProgram = "zsv";
homepage = "https://github.com/liquidaty/zsv";
changelog = "https://github.com/liquidaty/zsv/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.all;
};
}