diff --git a/pkgs/shells/nushell/plugins/query.nix b/pkgs/shells/nushell/plugins/query.nix index ab9ca7b7b52a..fb0d7ec84e95 100644 --- a/pkgs/shells/nushell/plugins/query.nix +++ b/pkgs/shells/nushell/plugins/query.nix @@ -4,15 +4,16 @@ , nushell , IOKit , CoreFoundation +, nix-update-script }: rustPlatform.buildRustPackage { pname = "nushell_plugin_query"; - version = "0.80.0"; + version = "0.81.0"; src = nushell.src; - cargoHash = "sha256-k4UjHNf5L9RmYuB66gcoyCmhd1MvtAxTOxRh24sv0sk="; + cargoHash = "sha256-iQ7xr7NY/OQ5pVq2DFmdl/6F2NlUh3NBA9dk+e4gzRE="; buildInputs = lib.optionals stdenv.isDarwin [ IOKit CoreFoundation ]; @@ -21,6 +22,10 @@ rustPlatform.buildRustPackage { # compilation fails with a missing symbol doCheck = false; + passthru = { + updateScript = nix-update-script { }; + }; + meta = with lib; { description = "A Nushell plugin to query JSON, XML, and various web data"; homepage = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_query";