summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-01-30 17:17:16 -0500
committerGitHub <noreply@github.com>2021-01-30 17:17:16 -0500
commitbed0b6a080eaa110340fd1a1a43ae47e6e2c3b46 (patch)
tree84f0e9650064a35571614c573bb7ece624e8ea2c /pkgs
parent5fc5e83808c1f9ce5b414a1d596f6427b77ac180 (diff)
parent0178d6646f61ce3f9025bff99c775a63048b0387 (diff)
downloadnixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.tar
nixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.tar.gz
nixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.tar.bz2
nixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.tar.lz
nixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.tar.xz
nixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.tar.zst
nixpkgs-bed0b6a080eaa110340fd1a1a43ae47e6e2c3b46.zip
Merge pull request #111353 from r-ryantm/auto-update/nushell
nushell: 0.25.1 -> 0.26.0
Diffstat (limited to 'pkgs')
-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 74843dea6cc..a0a070b9266 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -15,16 +15,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.25.1";
+  version = "0.26.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "0wsl57i3cd9whqvgjdnbz05230mkn2174gqld7mzn9iiym1rkcm4";
+    sha256 = "sha256-v0u04xY4iEbOTeaPKmbHImNTzEgdqf1wZWV0hKOV6Vg=";
   };
 
-  cargoSha256 = "1ifvfwmrl97skjwp1qwrj863npsxcgfqm4a81cvw9bqhbylbjc77";
+  cargoSha256 = "sha256-0Ncjy6vZqiMNB+aRzf255tsIdrnpG0a4Xoid+mAAvUk=";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];