From 80478c1f9056dd4f7735d94de8802508cce493ec Mon Sep 17 00:00:00 2001 From: DontEatOreo <57304299+DontEatOreo@users.noreply.github.com> Date: Sun, 27 Apr 2025 20:03:09 +0300 Subject: [PATCH] starship: 1.22.1 -> 1.23.0 Changelog: https://github.com/starship/starship/releases/tag/v1.23.0 Diff: https://github.com/starship/starship/compare/v1.22.1...v1.23.0 --- pkgs/by-name/st/starship/package.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/st/starship/package.nix b/pkgs/by-name/st/starship/package.nix index 76e7fdc124ec..4505b2e7c754 100644 --- a/pkgs/by-name/st/starship/package.nix +++ b/pkgs/by-name/st/starship/package.nix @@ -4,7 +4,6 @@ fetchFromGitHub, rustPlatform, installShellFiles, - cmake, writableTmpDirAsHomeHook, git, nixosTests, @@ -13,19 +12,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "starship"; - version = "1.22.1"; + version = "1.23.0"; src = fetchFromGitHub { owner = "starship"; repo = "starship"; rev = "v${finalAttrs.version}"; - hash = "sha256-YoLi4wxBK9TFTtZRm+2N8HO5ZiC3V2GMqKFKKLHq++s="; + hash = "sha256-5Euhbuu1uiJ5HJNlPs9sUoGcc5QWqXqNmEH0jpfGLlc="; }; - nativeBuildInputs = [ - installShellFiles - cmake - ]; + nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ writableTmpDirAsHomeHook ]; @@ -53,7 +49,7 @@ rustPlatform.buildRustPackage (finalAttrs: { ); useFetchCargoVendor = true; - cargoHash = "sha256-B2CCrSH2aTcGEX96oBxl/27hNMdDpdd2vxdt0/nlN6I="; + cargoHash = "sha256-cxDWaPlNK7POJ3GhA21NlJ6q62bqHdA/4sru5pLkvOA="; nativeCheckInputs = [ git ];