48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, stdenv
 | 
						|
, fetchFromGitHub
 | 
						|
, rustPlatform
 | 
						|
, pkg-config
 | 
						|
, openssl
 | 
						|
, installShellFiles
 | 
						|
, libiconv
 | 
						|
, Security
 | 
						|
}:
 | 
						|
 | 
						|
rustPlatform.buildRustPackage rec {
 | 
						|
  pname = "starship";
 | 
						|
  version = "0.50.0";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "starship";
 | 
						|
    repo = pname;
 | 
						|
    rev = "v${version}";
 | 
						|
    sha256 = "1bnnqrxsmp3z2qksd8h4lfbq4kxxy1cg4yynadz66lxyzabv2v21";
 | 
						|
  };
 | 
						|
 | 
						|
  nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
 | 
						|
 | 
						|
  buildInputs = lib.optionals stdenv.isLinux [ openssl ]
 | 
						|
    ++ 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 = "0plk47i2xrn3x5yr3gw3pq74maqf4krb8d6i4sf8gil4mnpcgxir";
 | 
						|
 | 
						|
  preCheck = ''
 | 
						|
    HOME=$TMPDIR
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with 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 Br1ght0ne Frostman marsam ];
 | 
						|
  };
 | 
						|
}
 |