From b4ead24fe9dd06c69be6903ab0e272007f638b3c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 13 Jan 2026 09:51:42 +0000 Subject: [PATCH] md-tui: 0.9.1 -> 0.9.3 Diff: https://github.com/henriklovhaug/md-tui/compare/v0.9.1...v0.9.3 Changelog: https://github.com/henriklovhaug/md-tui/blob/refs/tags/v0.9.3/CHANGELOG.md --- pkgs/by-name/md/md-tui/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/md/md-tui/package.nix b/pkgs/by-name/md/md-tui/package.nix index fabbae2157a0..bc4a683c9c65 100644 --- a/pkgs/by-name/md/md-tui/package.nix +++ b/pkgs/by-name/md/md-tui/package.nix @@ -6,18 +6,18 @@ nix-update-script, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "md-tui"; - version = "0.9.1"; + version = "0.9.3"; src = fetchFromGitHub { owner = "henriklovhaug"; repo = "md-tui"; - tag = "v${version}"; - hash = "sha256-pOo+gifWomZh3hTfqaIRMPEPR5TPinzl8NgYcCit7t4="; + tag = "v${finalAttrs.version}"; + hash = "sha256-LBt15MCv+QbjutwRfYI9zX5UAiYF2Y70EQ3DATRLaY8="; }; - cargoHash = "sha256-07U69UdiAqdIv5JVfvbLNfQD/SfPfaiYZsMr6y/r8UY="; + cargoHash = "sha256-2Qr+6y/DOQJYP5EMMI/OdqIMrHBX4tNH29fK+QCsrnQ="; nativeBuildInputs = [ pkg-config ]; @@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec { meta = { description = "Markdown renderer in the terminal"; homepage = "https://github.com/henriklovhaug/md-tui"; - changelog = "https://github.com/henriklovhaug/md-tui/blob/${src.rev}/CHANGELOG.md"; + changelog = "https://github.com/henriklovhaug/md-tui/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.agpl3Only; maintainers = with lib.maintainers; [ GaetanLepage @@ -37,4 +37,4 @@ rustPlatform.buildRustPackage rec { platforms = lib.platforms.all; mainProgram = "mdt"; }; -} +})