Merge pull request #87840 from Frostman/starship-0.41.1

starship: 0.41.0 -> 0.41.1
This commit is contained in:
Rok Garbas 2020-05-14 23:26:36 +02:00 committed by GitHub
commit efdeb1a0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,13 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "starship"; pname = "starship";
version = "0.41.0"; version = "0.41.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "starship"; owner = "starship";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1m5pi49g3pj2qr5slyasda5xp9lz3xhz3qb9k0pa6fvcn9581r9q"; sha256 = "0q41f1zj27vz5sg7harmk9zvmyc37w8hr5f74ipws438wz27qwm3";
}; };
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ]; nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
@ -22,14 +22,14 @@ rustPlatform.buildRustPackage rec {
--replace "/bin/echo" "echo" --replace "/bin/echo" "echo"
''; '';
cargoSha256 = "18z1p8xj1v9w6amc52gc2vcn5f4z8k71ig20zmj005v24si9pfwf"; cargoSha256 = "1i6d2vsgcjclk0r6j5lmynk5m0my2yphn0q9rm53s43n1vyf2g2v";
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root"; checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A minimal, blazing fast, and extremely customizable prompt for any shell"; description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
homepage = "https://starship.rs"; homepage = "https://starship.rs";
license = licenses.isc; license = licenses.isc;
maintainers = with maintainers; [ bbigras davidtwco filalex77 ]; maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }