summary refs log tree commit diff
path: root/pkgs/shells/nushell
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-11-03 16:55:50 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2021-11-03 16:55:50 +0000
commit5fbeb7902a53b9488f522454e3f46c19456c6601 (patch)
tree24edb275cb19563e10134484620d88225b4473dd /pkgs/shells/nushell
parentcbb7455d73fe8c249862ccaf3850c7b9a9680360 (diff)
downloadnixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.tar
nixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.tar.gz
nixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.tar.bz2
nixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.tar.lz
nixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.tar.xz
nixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.tar.zst
nixpkgs-5fbeb7902a53b9488f522454e3f46c19456c6601.zip
nushell: 0.38.0 -> 0.39.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 14137fa0e60..7a07c4ffdc4 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -18,16 +18,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.38.0";
+  version = "0.39.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "155rn0balgikkhy77gbva6a88pgwm27flzgjyphiwzwnah1mmhca";
+    sha256 = "sha256-eN1tTKNuZMU3qObHaqq70bdkmZeAD6LNAQau9JGSXpE=";
   };
 
-  cargoSha256 = "1pk56s47mk0f8cww6h1y43jdnf311g35xynz1jvhrk31yyjhb0jl";
+  cargoSha256 = "sha256-6TZz8b8fALPTDRxzp+7ZWCHjOwVtqRjdSO6aEwZcMnc=";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ python3 ];