summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2022-12-02 11:29:12 +0100
committerArnout Engelen <arnout@bzzt.net>2022-12-02 11:29:12 +0100
commit3627243f815fdfcad3815e4a5e16aa4b59d706b1 (patch)
treed726614b9897c5a703cb244dee3b539dc72c6772 /pkgs/shells
parente76c78d20685a043d23f5f9e0ccd2203997f1fb1 (diff)
downloadnixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.tar
nixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.tar.gz
nixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.tar.bz2
nixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.tar.lz
nixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.tar.xz
nixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.tar.zst
nixpkgs-3627243f815fdfcad3815e4a5e16aa4b59d706b1.zip
nushell: 0.71.0 -> 0.72.0
Wanted to see if the tests are still failing. They are.
https://github.com/nushell/nushell/issues/6708
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 4da72442edc..432cbfe9ac9 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -24,16 +24,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.71.0";
+  version = "0.72.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "sha256-81vyW5GovBnH3tLr77V2uLIkigymF+nOZ0F/J4eEu9Q=";
+    sha256 = "sha256-CWFG3ltSWwUPz+cVXUL0RaDxmm1A3Ie0BUBFFZfR9Mc=";
   };
 
-  cargoSha256 = "sha256-A7MvyAQpd05uSkTw2fgQAN45dqku1RWYag5LIkS6GnY=";
+  cargoSha256 = "sha256-VgE14440BumaL/wZz1ONjIK1nsJWaPlvy7M0R+ojb9A=";
 
   # enable pkg-config feature of zstd
   cargoPatches = [ ./zstd-pkg-config.patch ];