nixpkgs/pkgs/tools/misc/starship/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, pkg-config
, openssl
, installShellFiles
, libiconv
, Security
}:
2019-08-16 17:12:52 +00:00
rustPlatform.buildRustPackage rec {
pname = "starship";
2021-05-01 18:49:50 +00:00
version = "0.53.0";
2019-08-16 17:12:52 +00:00
src = fetchFromGitHub {
owner = "starship";
2019-12-03 17:10:30 +00:00
repo = pname;
2019-08-16 17:12:52 +00:00
rev = "v${version}";
2021-05-01 18:49:50 +00:00
sha256 = "sha256-g4w14fktJB8TItgm3nSgG+lpdXdNTpX52J+FsIbU+YY=";
2019-08-16 17:12:52 +00:00
};
2021-01-15 09:19:50 +00:00
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
2020-03-22 09:20:00 +00:00
2021-01-15 09:19:50 +00:00
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
2019-08-16 17:12:52 +00:00
2020-06-26 09:20:00 +00:00
postInstall = ''
for shell in bash fish zsh; do
STARSHIP_CACHE=$TMPDIR $out/bin/starship completions $shell > starship.$shell
2020-06-26 09:20:00 +00:00
installShellCompletion starship.$shell
done
'';
2021-05-01 18:49:50 +00:00
cargoSha256 = "sha256-9wpr1gs9EehmFzCW2kKDx+LKoDUC27fmhjpcH/fIcyY=";
preCheck = ''
HOME=$TMPDIR
'';
2019-08-16 17:12:52 +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;
maintainers = with maintainers; [ bbigras davidtwco Br1ght0ne Frostman marsam ];
2019-08-16 17:12:52 +00:00
};
}