From abe016dce5537e61099cb80e30974aad38d34b33 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 15 Apr 2026 18:41:10 +0000 Subject: [PATCH] just-lsp: 0.4.1 -> 0.4.2 Diff: https://github.com/terror/just-lsp/compare/0.4.1...0.4.2 --- pkgs/by-name/ju/just-lsp/package.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ju/just-lsp/package.nix b/pkgs/by-name/ju/just-lsp/package.nix index 1b694cfe89c1..1bc322419cd9 100644 --- a/pkgs/by-name/ju/just-lsp/package.nix +++ b/pkgs/by-name/ju/just-lsp/package.nix @@ -2,21 +2,27 @@ lib, rustPlatform, fetchFromGitHub, + versionCheckHook, nix-update-script, }: rustPlatform.buildRustPackage (finalAttrs: { pname = "just-lsp"; - version = "0.4.1"; + version = "0.4.2"; src = fetchFromGitHub { owner = "terror"; repo = "just-lsp"; tag = finalAttrs.version; - hash = "sha256-h6thjPu9XiZJbNgw9Vd41WhMtlaHaNw+ATHGhWWsJLs="; + hash = "sha256-bNOQHFULe+gA9UC9JBoTaStQ1geqXqOxydIPF39w2xY="; }; - cargoHash = "sha256-g9Py7tIGnZaC8ue9aijnmhWzHEMAMuVaGJCwvpfgLiI="; + cargoHash = "sha256-3JsVJ84DWNf1UTYHbreAvj6XoAGaEk6OXML4saiZBlA="; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + doInstallCheck = true; passthru = { updateScript = nix-update-script { };