From 19ef658fe384d191009eaf3195b4833b329abec6 Mon Sep 17 00:00:00 2001 From: Angel J <78835633+iamanaws@users.noreply.github.com> Date: Wed, 29 Apr 2026 21:26:54 -0700 Subject: [PATCH] cargo-typify: 0.6.1 -> 0.6.2 --- pkgs/by-name/ca/cargo-typify/package.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/ca/cargo-typify/package.nix b/pkgs/by-name/ca/cargo-typify/package.nix index 94ba952b5786..b292a4632890 100644 --- a/pkgs/by-name/ca/cargo-typify/package.nix +++ b/pkgs/by-name/ca/cargo-typify/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "cargo-typify"; - version = "0.6.1"; + version = "0.6.2"; src = fetchFromGitHub { owner = "oxidecomputer"; repo = "typify"; - rev = "v${finalAttrs.version}"; - hash = "sha256-tsZY+Ygh+9xOOAKcNh2U2k47o+uNAC2zguL+qW/wiqg="; + tag = "v${finalAttrs.version}"; + hash = "sha256-Ym3xPMn36+Y8dnImmuegjwrARPzozhwI+qhDCXmFsHg="; }; - cargoHash = "sha256-K5Fj261Jh+NVipR71cYo5CqHx31czfgs6kr6uifHvaw="; + cargoHash = "sha256-3hh4M5cqwLDHcHI+YGKXQOeTXGcVTec+xk+mZcVp0IU="; nativeBuildInputs = [ rustfmt @@ -46,13 +46,12 @@ rustPlatform.buildRustPackage (finalAttrs: { --set RUSTFMT "${lib.getExe rustfmt}" ''; - passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = { description = "JSON Schema to Rust type converter"; - mainProgram = "cargo-typify"; homepage = "https://github.com/oxidecomputer/typify"; + changelog = "https://github.com/oxidecomputer/typify/blob/${finalAttrs.src.tag}/CHANGELOG.adoc"; license = with lib.licenses; [ asl20 ]; maintainers = with lib.maintainers; [ iamanaws ]; + mainProgram = "cargo-typify"; }; })