about summary refs log tree commit diff
path: root/pkgs/shells/nushell
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2023-06-12 10:21:45 -0400
committerYt <happysalada@tuta.io>2023-06-12 10:28:41 -0400
commit3596490914ec9f24b20a16366363f41ebe9059d0 (patch)
treec5ee9130cf6d6de74cb8fd61e25f0bbe78c05f89 /pkgs/shells/nushell
parent06375c5962ed3a4298bc91c1ac25fd121437a479 (diff)
nushellPlugins.query: 0.80.0 -> 0.81.0
Diffstat (limited to 'pkgs/shells/nushell')
-rw-r--r--pkgs/shells/nushell/plugins/query.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/shells/nushell/plugins/query.nix b/pkgs/shells/nushell/plugins/query.nix
index ab9ca7b7b52a6..fb0d7ec84e95f 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";