about summary refs log tree commit diff
path: root/pkgs/shells/nushell
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2022-04-20 21:36:28 +0200
committerArnout Engelen <arnout@bzzt.net>2022-04-20 21:36:28 +0200
commit67e9ab5612efbbd4274d6330034280fb14c4b6c5 (patch)
tree5998472acc6e550b45afb41292d9795e0f29193d /pkgs/shells/nushell
parent1ffba9f2f683063c2b14c9f4d12c55ad5f4ed887 (diff)
nushell: 0.60.0 -> 0.61.0
lots of nice improvements, among others showing documentation
when auto-completing flags in custom completions

https://github.com/nushell/nushell/releases/tag/0.61.0
Diffstat (limited to 'pkgs/shells/nushell')
-rw-r--r--pkgs/shells/nushell/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix
index b77cad3d12b13..7eeaef0f45a2b 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -18,16 +18,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.60.0";
+  version = "0.61.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "1qfqn2q2bam0jrr4yqq9rb29k8qj9w9g0j9x4n8h0zp28vn7c2bq";
+    sha256 = "sha256-1wTMXlFViJh/x+W7WqZ9uf1SV6X4er6SWO6qTjf9C94=";
   };
 
-  cargoSha256 = "sha256-gZ9r1Ryp5a7MjG9yM0pGCBYtM4GylZg7Sg9wCiB+SW0=";
+  cargoSha256 = "sha256-aG5otxeVGBAi8uZd7xRnvwapfKT3kToBiYhFUTYIgHM=";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ python3 ];