30 lines
662 B
Nix
30 lines
662 B
Nix
{ lib, stdenv, fetchFromGitHub, perl, jq }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zsv";
|
|
version = "0.3.4-alpha";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "liquidaty";
|
|
repo = "zsv";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3drVqKRs5bjkvQiHyEANI5geeF5g7ba2+RxmAhxbu84=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|