2020-06-26 11:20:00 +02:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, installShellFiles
|
2019-12-20 11:09:28 +01:00
|
|
|
, libiconv, Security }:
|
2019-08-16 19:12:52 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "starship";
|
2020-07-06 19:36:44 +02:00
|
|
|
version = "0.44.0";
|
2019-08-16 19:12:52 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "starship";
|
2019-12-03 18:10:30 +01:00
|
|
|
repo = pname;
|
2019-08-16 19:12:52 +02:00
|
|
|
rev = "v${version}";
|
2020-07-06 19:36:44 +02:00
|
|
|
sha256 = "1pxrg5sfqqkvqww3fabq64j1fg03v5fj5yvm2xg2qa5n2f2qwnhi";
|
2019-08-16 19:12:52 +02:00
|
|
|
};
|
|
|
|
|
2020-06-26 11:20:00 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
2020-03-22 10:20:00 +01:00
|
|
|
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2019-08-16 19:12:52 +02:00
|
|
|
|
2019-12-03 18:37:29 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/utils.rs \
|
|
|
|
--replace "/bin/echo" "echo"
|
|
|
|
'';
|
|
|
|
|
2020-06-26 11:20:00 +02:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/starship completions $shell > starship.$shell
|
|
|
|
installShellCompletion starship.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2020-07-06 19:36:44 +02:00
|
|
|
cargoSha256 = "1b5gsw7jpiqjc7kbwf2kp6h6ks7jcgygrwzvn2akz86z40sskyg3";
|
2020-06-27 03:00:00 +02:00
|
|
|
|
|
|
|
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" ];
|
2019-08-16 19:12:52 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
|
|
|
|
homepage = "https://starship.rs";
|
|
|
|
license = licenses.isc;
|
2020-06-26 11:20:00 +02:00
|
|
|
maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman marsam ];
|
2019-08-16 19:12:52 +02:00
|
|
|
};
|
|
|
|
}
|