2021-01-29 05:20:00 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-09-30 01:00:00 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
, installShellFiles
|
|
|
|
, libiconv
|
|
|
|
, Security
|
|
|
|
}:
|
2019-08-16 19:12:52 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "starship";
|
2021-11-09 23:16:52 +01:00
|
|
|
version = "1.0.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}";
|
2021-11-09 23:16:52 +01:00
|
|
|
sha256 = "sha256-KU9IbvQ6qPbSoHVRN/g7iETV47Y4wMMESzpRHMQ0Uxw=";
|
2019-08-16 19:12:52 +02:00
|
|
|
};
|
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
|
2020-03-22 10:20:00 +01:00
|
|
|
|
2021-01-15 10:19:50 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2019-08-16 19:12:52 +02:00
|
|
|
|
2021-12-02 01:17:44 +01:00
|
|
|
buildFeatures = lib.optional (!stdenv.isDarwin) "notify-rust";
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-11-09 23:16:52 +01:00
|
|
|
cargoSha256 = "sha256-IzTRvvQ1uHS2WY2Cf8VQOq423PjwXYNW4bub0ZyvTIE=";
|
2021-01-29 05:20:00 +01:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
HOME=$TMPDIR
|
|
|
|
'';
|
2019-08-16 19:12:52 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-08-16 19:12:52 +02:00
|
|
|
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
|
|
|
|
homepage = "https://starship.rs";
|
|
|
|
license = licenses.isc;
|
2020-11-17 12:02:06 +01:00
|
|
|
maintainers = with maintainers; [ bbigras davidtwco Br1ght0ne Frostman marsam ];
|
2019-08-16 19:12:52 +02:00
|
|
|
};
|
|
|
|
}
|