From 8d3800d827f3bd189757d76f515aeca70e9db066 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sat, 7 Feb 2026 21:12:43 -0500 Subject: [PATCH 1/2] mise: switch src.rev to src.tag, change meta.changelog from release to changelog --- pkgs/by-name/mi/mise/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mi/mise/package.nix b/pkgs/by-name/mi/mise/package.nix index 88b77d5f9a46..72253c4e3156 100644 --- a/pkgs/by-name/mi/mise/package.nix +++ b/pkgs/by-name/mi/mise/package.nix @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: { src = fetchFromGitHub { owner = "jdx"; repo = "mise"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-7TsSK3mk6tSxvWPNYq8Viyc8x4BYmR/QrqRT/sfetz4="; }; @@ -137,7 +137,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { homepage = "https://mise.jdx.dev"; description = "Front-end to your dev env"; - changelog = "https://github.com/jdx/mise/releases/tag/v${finalAttrs.version}"; + changelog = "https://github.com/jdx/mise/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ konradmalik ]; mainProgram = "mise"; From 713e4d0f99dd05e5a9f62f0b997cbf2eb69e5440 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sat, 7 Feb 2026 21:13:56 -0500 Subject: [PATCH 2/2] mise: 2026.2.1 -> 2026.2.7 Changelog: https://github.com/jdx/mise/blob/v2026.2.7/CHANGELOG.md --- pkgs/by-name/mi/mise/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/mi/mise/package.nix b/pkgs/by-name/mi/mise/package.nix index 72253c4e3156..6693a74262f7 100644 --- a/pkgs/by-name/mi/mise/package.nix +++ b/pkgs/by-name/mi/mise/package.nix @@ -22,16 +22,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "mise"; - version = "2026.2.1"; + version = "2026.2.7"; src = fetchFromGitHub { owner = "jdx"; repo = "mise"; tag = "v${finalAttrs.version}"; - hash = "sha256-7TsSK3mk6tSxvWPNYq8Viyc8x4BYmR/QrqRT/sfetz4="; + hash = "sha256-ckxezWHQBLkhWSByXcVDaKtpnmvzoYzCR39jcXQIJXE="; }; - cargoHash = "sha256-/gltCohAPGdCpcCvou7HBG0yioiOaGjnIF60FQzkB+s="; + cargoHash = "sha256-OKm6nBMi/LXNNwS0wq8ChmQVolzuyWLZ7T7k8C8CwNw="; nativeBuildInputs = [ installShellFiles @@ -74,8 +74,8 @@ rustPlatform.buildRustPackage (finalAttrs: { # last_modified will always be different in nix "--skip=tera::tests::test_last_modified" ] - ++ lib.optionals (stdenv.hostPlatform.system == "x86_64-darwin") [ - # started failing mid-April 2025 + ++ lib.optionals (stdenv.hostPlatform.isDarwin) [ + # x86_64-darwin started failing mid-April 2025; aarch64 in Feb 2026 "--skip=task::task_file_providers::remote_task_http::tests::test_http_remote_task_get_local_path_with_cache" "--skip=task::task_file_providers::remote_task_http::tests::test_http_remote_task_get_local_path_without_cache" ];