htmx-lsp: 0.1.0 -> 0.1.0-unstable-2025-06-14, add updateScript (#404555)

authored by Peder Bergebakken Sundt and committed by GitHub 0cea59f6 4ca9d1c3

+8 -5
+8 -5
pkgs/by-name/ht/htmx-lsp/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 + unstableGitUpdater, 5 6 }: 6 7 7 - rustPlatform.buildRustPackage rec { 8 + rustPlatform.buildRustPackage { 8 9 pname = "htmx-lsp"; 9 - version = "0.1.0"; 10 + version = "0.1.0-unstable-2025-06-14"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "ThePrimeagen"; 13 14 repo = "htmx-lsp"; 14 - rev = version; 15 - hash = "sha256-CvQ+vgo3+qUOj0SS6/NrapzXkP98tpiZbGhRHJxEqeo="; 15 + rev = "c45f55b2bf8be2d92489fd6d69a3db07fe5f214b"; 16 + hash = "sha256-7CAlYYwsanlOCGeY7gYE5Fzk5IEO4hThgINiJmXql7s="; 16 17 }; 17 18 18 19 useFetchCargoVendor = true; 19 - cargoHash = "sha256-EQHNFiyQ7TwY4LldMFOTX0epilU76LPOiHQIIUsNhS8="; 20 + cargoHash = "sha256-/ypaTrctJo88DHtF/hv6B0dqB06axd/qKFnuI8zs8KA="; 21 + 22 + passthru.updateScript = unstableGitUpdater { }; 20 23 21 24 meta = with lib; { 22 25 description = "Language server implementation for htmx";