mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
9e78f73ba5
https://github.com/starship/starship/releases/tag/v0.45.0 https://github.com/starship/starship/releases/tag/v0.45.1 https://github.com/starship/starship/releases/tag/v0.45.2
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, openssl
|
|
, installShellFiles
|
|
, libiconv
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "starship";
|
|
version = "0.45.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "starship";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0kxmgx4pnayp3jf6cgmka05x3aymxr79rim5nff6k3cg5zaqrz59";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
postInstall = ''
|
|
for shell in bash fish zsh; do
|
|
STARSHIP_CACHE=$TMPDIR $out/bin/starship completions $shell > starship.$shell
|
|
installShellCompletion starship.$shell
|
|
done
|
|
'';
|
|
|
|
cargoSha256 = "0x9a322anwrgpxfqrvqb1ikavp8qffa93wdvj5kln1d2rgmxr2sy";
|
|
|
|
checkFlags = [
|
|
"--skip=directory_in_home"
|
|
"--skip=fish_directory_in_home"
|
|
"--skip=home_directory"
|
|
"--skip=truncated_directory_in_home"
|
|
"--skip=directory_in_root"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
|
|
homepage = "https://starship.rs";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman marsam ];
|
|
};
|
|
}
|