2021-01-29 04:20:00 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-09-29 23:00:00 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
|
|
|
, libiconv
|
2022-03-27 15:22:43 +00:00
|
|
|
, libgit2
|
|
|
|
, pkg-config
|
2021-12-24 11:24:29 +00:00
|
|
|
, nixosTests
|
2020-09-29 23:00:00 +00:00
|
|
|
, Security
|
2022-02-14 04:19:04 +00:00
|
|
|
, Foundation
|
2022-04-09 16:33:50 +00:00
|
|
|
, Cocoa
|
2020-09-29 23:00:00 +00:00
|
|
|
}:
|
2019-08-16 17:12:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "starship";
|
2022-06-27 19:47:17 +00:00
|
|
|
version = "1.9.1";
|
2019-08-16 17:12:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "starship";
|
2019-12-03 17:10:30 +00:00
|
|
|
repo = pname;
|
2022-04-15 04:20:00 +00:00
|
|
|
rev = "v${version}";
|
2022-06-27 19:47:17 +00:00
|
|
|
sha256 = "sha256-IujaGyAGYlBb4efaRb13rsPSD2gWAg5UgG10iMp9iQE=";
|
2019-08-16 17:12:52 +00:00
|
|
|
};
|
|
|
|
|
2022-03-27 15:22:43 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config ];
|
2020-03-22 09:20:00 +00:00
|
|
|
|
2022-04-09 16:33:50 +00:00
|
|
|
buildInputs = [ libgit2 ] ++ lib.optionals stdenv.isDarwin [ libiconv Security Foundation Cocoa ];
|
2019-08-16 17:12:52 +00:00
|
|
|
|
2022-04-13 22:58:31 +00:00
|
|
|
buildNoDefaultFeatures = true;
|
|
|
|
# the "notify" feature is currently broken on darwin
|
|
|
|
buildFeatures = if stdenv.isDarwin then [ "battery" ] else [ "default" ];
|
|
|
|
|
2020-06-26 09:20:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
2020-09-29 23:00:00 +00:00
|
|
|
STARSHIP_CACHE=$TMPDIR $out/bin/starship completions $shell > starship.$shell
|
2020-06-26 09:20:00 +00:00
|
|
|
installShellCompletion starship.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2022-06-27 19:47:17 +00:00
|
|
|
cargoSha256 = "sha256-HrSMNNrldwb6LMMuxdQ84iY+/o5L2qwe+Vz3ekQt1YQ=";
|
2021-01-29 04:20:00 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
HOME=$TMPDIR
|
|
|
|
'';
|
2019-08-16 17:12:52 +00:00
|
|
|
|
2021-12-24 11:24:29 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) starship;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-08-16 17:12:52 +00:00
|
|
|
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
|
|
|
|
homepage = "https://starship.rs";
|
|
|
|
license = licenses.isc;
|
2021-12-23 22:22:39 +00:00
|
|
|
maintainers = with maintainers; [ bbigras danth davidtwco Br1ght0ne Frostman marsam ];
|
2019-08-16 17:12:52 +00:00
|
|
|
};
|
|
|
|
}
|