2020-09-30 01:00:00 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
, installShellFiles
|
|
|
|
, libiconv
|
|
|
|
, Security
|
|
|
|
}:
|
2019-08-16 19:12:52 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "starship";
|
2020-09-30 01:00:00 +02:00
|
|
|
version = "0.45.2";
|
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-09-30 01:00:00 +02:00
|
|
|
sha256 = "0kxmgx4pnayp3jf6cgmka05x3aymxr79rim5nff6k3cg5zaqrz59";
|
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
|
|
|
|
2020-06-26 11:20:00 +02:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
2020-09-30 01:00:00 +02:00
|
|
|
STARSHIP_CACHE=$TMPDIR $out/bin/starship completions $shell > starship.$shell
|
2020-06-26 11:20:00 +02:00
|
|
|
installShellCompletion starship.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2020-09-30 01:00:00 +02:00
|
|
|
cargoSha256 = "0x9a322anwrgpxfqrvqb1ikavp8qffa93wdvj5kln1d2rgmxr2sy";
|
2020-06-27 03:00:00 +02:00
|
|
|
|
2020-09-30 01:00:00 +02:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=directory_in_home"
|
|
|
|
"--skip=fish_directory_in_home"
|
|
|
|
"--skip=home_directory"
|
|
|
|
"--skip=truncated_directory_in_home"
|
|
|
|
"--skip=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
|
|
|
};
|
|
|
|
}
|