microfetch: 0.4.9 -> 0.4.13 (#487885)

This commit is contained in:
Ramses
2026-02-07 11:38:39 +00:00
committed by GitHub
+8 -4
View File
@@ -1,22 +1,26 @@
{
lib,
rustPlatform,
mold,
stdenv,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "microfetch";
version = "0.4.9";
version = "0.4.13";
src = fetchFromGitHub {
owner = "NotAShelf";
repo = "microfetch";
tag = "v${finalAttrs.version}";
hash = "sha256-F3yRJrOzBzSDLadVTZqOPMaqF+3NSzedi222EawqVWQ=";
tag = "${finalAttrs.version}";
hash = "sha256-aJ2QuMbUM/beMD8b62AqzTNljQ8RtBNOSvj9nJfRXbA=";
};
cargoHash = "sha256-Ewtge3yaegzZM4DgUXSquyJM7xcpmSp6lLmMrfrgy4Y=";
cargoHash = "sha256-vGvpjRJr4ez322JWUwboVml22vnRVRlwpZ9W4F5wATA=";
nativeBuildInputs = lib.optionals stdenv.isLinux [ mold ];
passthru.updateScript = nix-update-script { };