mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
zsv: 0.3.8-alpha -> 0.4.4-alpha (#392490)
This commit is contained in:
@@ -6,15 +6,15 @@
|
||||
jq,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "zsv";
|
||||
version = "0.3.8-alpha";
|
||||
version = "0.4.4-alpha";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "liquidaty";
|
||||
repo = "zsv";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-+6oZvMlfLVTDLRlqOpgdZP2YxT6Zlt13wBMFlryBrXY=";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-XZE7jMQaPP2B1OIlkHucNrtiJy8wMEVY9gcc5X4FyNI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perl ];
|
||||
@@ -25,13 +25,13 @@ stdenv.mkDerivation rec {
|
||||
"--jq-prefix=${lib.getLib jq}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
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;
|
||||
changelog = "https://github.com/liquidaty/zsv/releases/tag/v${finalAttrs.version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ ];
|
||||
platforms = platforms.all;
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user