Merge pull request #66730 from bbigras/starship

starship: init at 0.10.1
wip/yesman
Aaron Andersen 5 years ago committed by GitHub
commit fbff757014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      pkgs/tools/misc/starship/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, rustPlatform, openssl, pkgconfig, libiconv, darwin }:
rustPlatform.buildRustPackage rec {
pname = "starship";
version = "0.10.1";
src = fetchFromGitHub {
owner = "starship";
repo = "starship";
rev = "v${version}";
sha256 = "045lq4nsrdssmqbcj0551f2c5qd2rcvhs8gr4p4iniv7s89yz1xl";
};
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
nativeBuildInputs = [ pkgconfig ];
cargoSha256 = "126y8q19qr37wrj6x4hqh0v7nqr9yfrycwqfgdlaw6i33gb0qam9";
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 ];
platforms = platforms.all;
};
}

@ -16924,6 +16924,8 @@ in
stdmanpages = callPackage ../data/documentation/std-man-pages { };
starship = callPackage ../tools/misc/starship { };
stix-otf = callPackage ../data/fonts/stix-otf { };
stix-two = callPackage ../data/fonts/stix-two { };

Loading…
Cancel
Save