From fde9024da3bb53674ea77115b7575020cc990edc Mon Sep 17 00:00:00 2001 From: VuiMuich Date: Mon, 8 Sep 2025 10:36:09 +0200 Subject: [PATCH] nushellPlugins.hcl: 0.106.1 -> 0.107.0 --- pkgs/shells/nushell/plugins/hcl.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/shells/nushell/plugins/hcl.nix b/pkgs/shells/nushell/plugins/hcl.nix index 957119ff6c62..ee2d5d59f46f 100644 --- a/pkgs/shells/nushell/plugins/hcl.nix +++ b/pkgs/shells/nushell/plugins/hcl.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "nu_plugin_hcl"; - version = "0.106.1"; + version = "0.107.0"; src = fetchFromGitHub { owner = "Yethal"; repo = "nu_plugin_hcl"; tag = finalAttrs.version; - hash = "sha256-LM5tDmPWmpHd4HNnWoEdDXdKUkFA8J8VeDFMw32JXLk="; + hash = "sha256-KtX1i3iAZcEHnDdceV4JyildA//y/pnIxK/U/NbSw5w="; }; - cargoHash = "sha256-QCkNabv3pqtaRA7Ux5eiZPE/vRILlWKdQce7Gb0vzes="; + cargoHash = "sha256-CaPyAQgUpGBZx65j7ih4NOBR34rDpE0HQ425freGEOk="; nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ]; @@ -33,6 +33,5 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/Yethal/nu_plugin_hcl"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ yethal ]; - broken = true; }; })