From 9ab1e8edfa58b3cf8f413378dcc32833fc965187 Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Thu, 27 Mar 2025 14:31:18 +0100 Subject: [PATCH] remove starship as offered by guix shell utils --- snamellit/packages/tools.scm | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/snamellit/packages/tools.scm b/snamellit/packages/tools.scm index 5f092e7..3e74d3e 100644 --- a/snamellit/packages/tools.scm +++ b/snamellit/packages/tools.scm @@ -121,33 +121,4 @@ in parallel across providers.") -(define-public starship - (package - (name "starship") - (version "1.19.0") - (source (origin - (method url-fetch) - - (uri (string-append - "https://github.com/starship/starship/releases/download/v" - version - "/starship-x86_64-unknown-linux-musl.tar.gz")) - (sha256 - (base32 - "0nk7da0lyqfk6ikkc946vz6k6j9bi58si1z7119237nqsw336a54")))) - (build-system binary-build-system) - (supported-systems '("x86_64-linux")) - (arguments - '( - #:install-plan - `(("." ("starship") "bin/")) - )) - (synopsis "Tool to create a dynamic prompt in the terminal.") - (description - "Starship is a blazingly fast terminal prompt.") - (home-page "https://starship.rs") - (license license:isc))) - - -starship