summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorD Anzorge <d.anzorge@gmail.com>2022-05-20 15:32:32 +0200
committerD Anzorge <d.anzorge@gmail.com>2022-05-20 15:32:32 +0200
commitb10f0f69585daade7f1c38f313d7dbbee78ee310 (patch)
tree63d02893ccd5d2355bba62c8a62565e0437da77b /pkgs/shells
parent801c74739d2edb0b8865ace99de02defb8fae6e2 (diff)
downloadnixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.tar
nixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.tar.gz
nixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.tar.bz2
nixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.tar.lz
nixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.tar.xz
nixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.tar.zst
nixpkgs-b10f0f69585daade7f1c38f313d7dbbee78ee310.zip
nushell: 0.61.0 -> 0.62.0
https://www.nushell.sh/blog/2022-05-03-nushell_0_62.html
Diffstat (limited to 'pkgs/shells')
-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 7eeaef0f45a..9da58871672 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -18,16 +18,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.61.0";
+  version = "0.62.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "sha256-1wTMXlFViJh/x+W7WqZ9uf1SV6X4er6SWO6qTjf9C94=";
+    sha256 = "sha256-fEwsoAbrV4fSreyB4+xcN8PGDlkLyaK+ptwgZrsBuLk=";
   };
 
-  cargoSha256 = "sha256-aG5otxeVGBAi8uZd7xRnvwapfKT3kToBiYhFUTYIgHM=";
+  cargoSha256 = "sha256-C4Eynvk3ogIl/RDwyA28hYKlkHA2eMYSCyIvAbp+NQo=";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ python3 ];