Skip to content

Commit 7ac32cf

Browse files
authored
zsv: 0.3.8-alpha -> 0.4.4-alpha (#392490)
2 parents 7ced4d9 + 8d27ef5 commit 7ac32cf

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pkgs/by-name/zs/zsv/package.nix

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
jq,
77
}:
88

9-
stdenv.mkDerivation rec {
9+
stdenv.mkDerivation (finalAttrs: {
1010
pname = "zsv";
11-
version = "0.3.8-alpha";
11+
version = "0.4.4-alpha";
1212

1313
src = fetchFromGitHub {
1414
owner = "liquidaty";
1515
repo = "zsv";
16-
rev = "v${version}";
17-
hash = "sha256-+6oZvMlfLVTDLRlqOpgdZP2YxT6Zlt13wBMFlryBrXY=";
16+
rev = "v${finalAttrs.version}";
17+
hash = "sha256-XZE7jMQaPP2B1OIlkHucNrtiJy8wMEVY9gcc5X4FyNI=";
1818
};
1919

2020
nativeBuildInputs = [ perl ];
@@ -25,13 +25,13 @@ stdenv.mkDerivation rec {
2525
"--jq-prefix=${lib.getLib jq}"
2626
];
2727

28-
meta = with lib; {
28+
meta = {
2929
description = "World's fastest (simd) CSV parser, with an extensible CLI";
3030
mainProgram = "zsv";
3131
homepage = "https://github.com/liquidaty/zsv";
32-
changelog = "https://github.com/liquidaty/zsv/releases/tag/v${version}";
33-
license = licenses.mit;
32+
changelog = "https://github.com/liquidaty/zsv/releases/tag/v${finalAttrs.version}";
33+
license = lib.licenses.mit;
3434
maintainers = [ ];
35-
platforms = platforms.all;
35+
platforms = lib.platforms.all;
3636
};
37-
}
37+
})

0 commit comments

Comments
 (0)