summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-21 18:00:00 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-05-01 09:25:02 +0200
commit861a342a328e0038182a2e2eb3d008f60cfb4e1b (patch)
tree703621b496c8b54ac584ca934604f2ad936296d9 /pkgs/shells
parente16494a7db324d54eb3534d061a11a97ff2f6279 (diff)
downloadnixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.tar
nixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.tar.gz
nixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.tar.bz2
nixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.tar.lz
nixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.tar.xz
nixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.tar.zst
nixpkgs-861a342a328e0038182a2e2eb3d008f60cfb4e1b.zip
nushell: 0.12.0 -> 0.13.0
Release notes: https://www.nushell.sh/blog/2020/04/21/nushell_0_13_0.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 43e0d2cb56a..9dbce58d093 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -15,16 +15,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.12.0";
+  version = "0.13.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "0cy3rm0yr4ay4hcgw202w5k1sqw09kd75a0yyk0s0v0cxpmssf5n";
+    sha256 = "1n92wcd3f6p38iwp9sc4bfhmaxb61ff6vvn0zvy3h4q8wmvxpiky";
   };
 
-  cargoSha256 = "0q89841jwbsvl4c90sl8wgnjjl8q0bb3kw7sl7k9dpnfmj5j144x";
+  cargoSha256 = "0dyszvy0nmbjill3wfyqprqkh911r070rvkxc1ls9s3yhxhwlhzq";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];