From 67e9ab5612efbbd4274d6330034280fb14c4b6c5 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Wed, 20 Apr 2022 21:36:28 +0200 Subject: [PATCH] nushell: 0.60.0 -> 0.61.0 lots of nice improvements, among others showing documentation when auto-completing flags in custom completions https://github.com/nushell/nushell/releases/tag/0.61.0 --- pkgs/shells/nushell/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix index b77cad3d12b1..7eeaef0f45a2 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 ];