about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2023-05-19 08:48:47 -0400
committerYt <happysalada@tuta.io>2023-05-19 09:04:53 -0400
commite5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7 (patch)
tree6c1010dcfd275c38e7f758d496450f37073f14d5 /pkgs/shells
parent2615f1d64fca1cf5c62739daf9101c577e62e8e8 (diff)
downloadnixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.tar
nixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.tar.gz
nixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.tar.bz2
nixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.tar.lz
nixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.tar.xz
nixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.tar.zst
nixlib-e5c8528b1cd03fb8a7b97143ed0a30c6cbe196f7.zip
nushellPlugins.query: 0.79.0 -> 0.80.0
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/nushell/plugins/query.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/shells/nushell/plugins/query.nix b/pkgs/shells/nushell/plugins/query.nix
index ffe4a2821f33..ab9ca7b7b52a 100644
--- a/pkgs/shells/nushell/plugins/query.nix
+++ b/pkgs/shells/nushell/plugins/query.nix
@@ -2,21 +2,17 @@
 , lib
 , rustPlatform
 , nushell
-, nix-update-script
 , IOKit
 , CoreFoundation
 }:
 
-let
-  pname = "nushell_plugin_query";
-in
 rustPlatform.buildRustPackage {
-  inherit pname;
-  version = nushell.version;
+  pname = "nushell_plugin_query";
+  version = "0.80.0";
 
   src = nushell.src;
 
-  cargoHash = "sha256-BKeEAgvhHP01K/q8itwFfFIH8BAS9e1dat449i3M4ig=";
+  cargoHash = "sha256-k4UjHNf5L9RmYuB66gcoyCmhd1MvtAxTOxRh24sv0sk=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ IOKit CoreFoundation ];