atuin: 18.5.0 -> 18.6.1 (#405277)

authored by Sandro and committed by GitHub a8439bf6 9c55b12a

+6 -6
+6 -6
pkgs/by-name/at/atuin/package.nix
··· 8 8 nix-update-script, 9 9 }: 10 10 11 - rustPlatform.buildRustPackage rec { 11 + rustPlatform.buildRustPackage (finalAttrs: { 12 12 pname = "atuin"; 13 - version = "18.5.0"; 13 + version = "18.6.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "atuinsh"; 17 17 repo = "atuin"; 18 - rev = "v${version}"; 19 - hash = "sha256-VXbnf/TfMWGHHXccKZBX4/RWDT/J1kpSBzhML4973mo="; 18 + tag = "v${finalAttrs.version}"; 19 + hash = "sha256-aRaUiGH2CTPtmbfrtLlNfoQzQWG817eazWctqwRlOCE="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-MQNveOBItVOHFNarU5xXl8xHoooSAVbA7JnxxuRI9To="; 23 + cargoHash = "sha256-umagQYzOMr3Jh1RewjT0aX5FpYxs9N/70NZXoGaAfi4="; 24 24 25 25 # atuin's default features include 'check-updates', which do not make sense 26 26 # for distribution builds. List all other default features. ··· 73 73 ]; 74 74 mainProgram = "atuin"; 75 75 }; 76 - } 76 + })