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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, installShellFiles
, libiconv
2021-12-24 11:24:29 +00:00
, nixosTests
, Security
2022-02-14 04:19:04 +00:00
, Foundation
}:
2019-08-16 18:12:52 +01:00
rustPlatform.buildRustPackage rec {
pname = "starship";
2022-02-11 04:25:46 +00:00
version = "1.3.0";
2019-08-16 18:12:52 +01:00
src = fetchFromGitHub {
owner = "starship";
2019-12-03 17:10:30 +00:00
repo = pname;
2019-08-16 18:12:52 +01:00
rev = "v${version}";
2022-02-11 04:25:46 +00:00
sha256 = "sha256-mqUE4JzNBhvtDpT2LM23eHX8q93wtPqA+/zr/PxEDiE=";
2019-08-16 18:12:52 +01:00
};
2022-03-26 18:02:42 +00:00
nativeBuildInputs = [ installShellFiles ];
2020-03-22 09:20:00 +00:00
2022-03-26 18:02:42 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security Foundation ];
2019-08-16 18:12:52 +01:00
2020-06-26 10:20:00 +01:00
postInstall = ''
for shell in bash fish zsh; do
STARSHIP_CACHE=$TMPDIR $out/bin/starship completions $shell > starship.$shell
2020-06-26 10:20:00 +01:00
installShellCompletion starship.$shell
done
'';
2022-02-11 04:25:46 +00:00
cargoSha256 = "sha256-hQNDiayVT4UgbxcxdXssi/evPvwgyvG/UOFyEHj7jpo=";
preCheck = ''
HOME=$TMPDIR
'';
2019-08-16 18:12:52 +01:00
2021-12-24 11:24:29 +00:00
passthru.tests = {
inherit (nixosTests) starship;
};
meta = with lib; {
2019-08-16 18:12:52 +01:00
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
homepage = "https://starship.rs";
license = licenses.isc;
2021-12-23 22:22:39 +00:00
maintainers = with maintainers; [ bbigras danth davidtwco Br1ght0ne Frostman marsam ];
2019-08-16 18:12:52 +01:00
};
}