File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments