lol

jaq: 2.2.0 -> 2.3.0 (#423235)

authored by

Gaétan Lepage and committed by
GitHub
fafdb67f a678ba91

+7 -7
+7 -7
pkgs/by-name/ja/jaq/package.nix
··· 6 6 nix-update-script, 7 7 }: 8 8 9 - rustPlatform.buildRustPackage rec { 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 10 pname = "jaq"; 11 - version = "2.2.0"; 11 + version = "2.3.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "01mf02"; 15 15 repo = "jaq"; 16 - tag = "v${version}"; 17 - hash = "sha256-mVC2aggfcEpCtriuz/s4JL8mYkrlyAQLnaN5vyfcW3s="; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-ZVTDbJ5RPgQeB4ntnNQcbbWquPFL7q4WYyQ5ihCVB64="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-ZZLp3Vwq013MPxKy9gTZ1yMi2O0QcDPgFw5YnrYt90I="; 21 + cargoHash = "sha256-hEILrjIJK/8CrQv5QcHu+AtPV7KcPdmw6422MyNoPwo="; 22 22 23 23 nativeInstallCheckInputs = [ 24 24 versionCheckHook ··· 31 31 meta = { 32 32 description = "Jq clone focused on correctness, speed and simplicity"; 33 33 homepage = "https://github.com/01mf02/jaq"; 34 - changelog = "https://github.com/01mf02/jaq/releases/tag/v${version}"; 34 + changelog = "https://github.com/01mf02/jaq/releases/tag/v${finalAttrs.version}"; 35 35 license = lib.licenses.mit; 36 36 maintainers = with lib.maintainers; [ 37 37 figsoda ··· 39 39 ]; 40 40 mainProgram = "jaq"; 41 41 }; 42 - } 42 + })