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

36 lines
1.1 KiB
Nix
Raw Normal View History

2020-03-22 02:20:00 -07:00
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl
2019-12-20 02:09:28 -08:00
, libiconv, Security }:
2019-08-16 10:12:52 -07:00
rustPlatform.buildRustPackage rec {
pname = "starship";
2020-06-09 13:02:02 -07:00
version = "0.42.0";
2019-08-16 10:12:52 -07:00
src = fetchFromGitHub {
owner = "starship";
2019-12-03 09:10:30 -08:00
repo = pname;
2019-08-16 10:12:52 -07:00
rev = "v${version}";
2020-06-09 13:02:02 -07:00
sha256 = "17wc9f07308a97dsmrkq74w2r639sqms0hwh8gavwxycj7wq7xz2";
2019-08-16 10:12:52 -07:00
};
2020-03-22 02:20:00 -07: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 10:12:52 -07:00
postPatch = ''
substituteInPlace src/utils.rs \
--replace "/bin/echo" "echo"
'';
2020-06-09 13:02:02 -07:00
cargoSha256 = "1nvs68qxygi2l43vxw890r40px35dvzbcg6qmrm09g60ykd8pjv2";
2019-08-19 09:17:24 -07:00
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";
2019-08-16 10:12:52 -07:00
meta = with stdenv.lib; {
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
homepage = "https://starship.rs";
license = licenses.isc;
2020-05-14 12:16:37 -07:00
maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman ];
2019-08-16 10:12:52 -07:00
platforms = platforms.all;
};
}