about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-04-21 03:43:18 +0300
committerGitHub <noreply@github.com>2022-04-21 03:43:18 +0300
commitba0b39e02cd6113821bf487c6c739b06eebb8948 (patch)
treedd4882e17d7583e50978760aabd96bc4a5433cbb /pkgs/shells
parent4c344da29a5b46caadb87df1d194082a190e1199 (diff)
parent67e9ab5612efbbd4274d6330034280fb14c4b6c5 (diff)
Merge pull request #169479 from raboof/nushell-0.60.0-to-0.61.0
nushell: 0.60.0 -> 0.61.0
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 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 ];