Merge pull request #95458 from JohnTitor/nushell-0.18.1

nushell: 0.17.0 -> 0.18.1
This commit is contained in:
Mario Rodas 2020-08-14 19:36:33 -05:00 committed by GitHub
commit e306bcdd0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View file

@ -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";

View file

@ -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" ];
};