summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-08-14 19:36:33 -0500
committerGitHub <noreply@github.com>2020-08-14 19:36:33 -0500
commite306bcdd0ea871eef10947cc1c722160f614da4b (patch)
treede35dcebea6080a98758fb0fb7bea550fc6fb089
parent300223118a3778332adb96f2b4163598e4b5587a (diff)
parent2026a9aee0a1b0657e021b4e6d49191c87aeb605 (diff)
downloadnixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.tar
nixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.tar.gz
nixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.tar.bz2
nixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.tar.lz
nixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.tar.xz
nixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.tar.zst
nixpkgs-e306bcdd0ea871eef10947cc1c722160f614da4b.zip
Merge pull request #95458 from JohnTitor/nushell-0.18.1
nushell: 0.17.0 -> 0.18.1
-rw-r--r--maintainers/maintainer-list.nix6
-rw-r--r--pkgs/shells/nushell/default.nix8
2 files changed, 10 insertions, 4 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index d4cff2cb5ed..23bd8026d01 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -3954,6 +3954,12 @@
     githubId = 8735102;
     name = "John Ramsden";
   };
+  johntitor = {
+    email = "huyuumi.dev@gmail.com";
+    github = "JohnTitor";
+    githubId = 25030997;
+    name = "Yuki Okushi";
+  };
   jojosch = {
     name = "Johannes Schleifenbaum";
     email = "johannes@js-webcoding.de";
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix
index 10d1b4267eb..351799099b1 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -14,16 +14,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.17.0";
+  version = "0.18.1";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "1a5jr1fh2n57lz84n6bvh78kjnvyaivjxwn95qkiiacvam2ji1h5";
+    sha256 = "100r26dx57wdzdpf6lgsgw0py33k3nsx73pa1qjcipwv00a106sr";
   };
 
-  cargoSha256 = "16m2bjmkcby14sd21axfr9qvghhyf5q2wdrmjw1dl3c8xhghqyy8";
+  cargoSha256 = "0ch79zsnqb5n9r7jq6figpmqp2cs2p9a3m7fg3sd04m797ki9chr";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
@@ -50,7 +50,7 @@ rustPlatform.buildRustPackage rec {
     description = "A modern shell written in Rust";
     homepage = "https://www.nushell.sh/";
     license = licenses.mit;
-    maintainers = with maintainers; [ filalex77 marsam ];
+    maintainers = with maintainers; [ filalex77 johntitor marsam ];
     platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
   };