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

36 lines
1.1 KiB
Nix
Raw Normal View History

2020-03-22 09:20:00 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl
2019-12-20 10:09:28 +00:00
, libiconv, Security }:
2019-08-16 17:12:52 +00:00
rustPlatform.buildRustPackage rec {
pname = "starship";
2020-04-14 07:03:05 +00:00
version = "0.40.1";
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}";
2020-04-14 07:03:05 +00:00
sha256 = "0jnm586wx5by1b6v78v78a84qzg05n1ha1hlmnjfyzhgjkbkayp1";
2019-08-16 17:12:52 +00:00
};
2020-03-22 09:20:00 +00:00
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
2019-08-16 17:12:52 +00:00
postPatch = ''
substituteInPlace src/utils.rs \
--replace "/bin/echo" "echo"
'';
2020-04-14 07:03:05 +00:00
cargoSha256 = "1jrlzihcq543z6hb1gq8zq6hqvgralzsknj3xnb6gia1n49b3zxz";
2019-08-19 16:17:24 +00:00
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";
2019-08-16 17:12:52 +00:00
meta = with stdenv.lib; {
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
homepage = "https://starship.rs";
license = licenses.isc;
2019-12-03 17:10:55 +00:00
maintainers = with maintainers; [ bbigras davidtwco filalex77 ];
2019-08-16 17:12:52 +00:00
platforms = platforms.all;
};
}