Merge pull request #91654 from marsam/update-starship
starship: 0.42.0 -> 0.43.0
This commit is contained in:
commit
41219b9dfd
@ -1,18 +1,18 @@
|
|||||||
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl
|
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, installShellFiles
|
||||||
, libiconv, Security }:
|
, libiconv, Security }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "starship";
|
pname = "starship";
|
||||||
version = "0.42.0";
|
version = "0.43.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "starship";
|
owner = "starship";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "17wc9f07308a97dsmrkq74w2r639sqms0hwh8gavwxycj7wq7xz2";
|
sha256 = "16ch3dhwgwmdalif3cyi3x4vrpww546wspcwc4xi0k7lp2zppbwf";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||||
@ -22,14 +22,29 @@ rustPlatform.buildRustPackage rec {
|
|||||||
--replace "/bin/echo" "echo"
|
--replace "/bin/echo" "echo"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cargoSha256 = "1nvs68qxygi2l43vxw890r40px35dvzbcg6qmrm09g60ykd8pjv2";
|
postInstall = ''
|
||||||
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";
|
for shell in bash fish zsh; do
|
||||||
|
$out/bin/starship completions $shell > starship.$shell
|
||||||
|
installShellCompletion starship.$shell
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
cargoSha256 = "09lq9ngnwg5z2l2y2ah8ng4cl8afb4gy4djwiq9yv61sjlqbr1y2";
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
substituteInPlace tests/testsuite/common.rs \
|
||||||
|
--replace "./target/debug/starship" "./$releaseDir/starship"
|
||||||
|
substituteInPlace tests/testsuite/python.rs \
|
||||||
|
--replace "#[test]" "#[test] #[ignore]"
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkFlagsArray = [ "--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 Frostman ];
|
maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman marsam ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user