diff options
| author | Timo Wilken <guix@twilken.net> | 2025-05-30 17:01:22 +0200 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2025-08-21 19:09:03 +0800 |
| commit | b4c583e7afcaad15dd41bfbce9f2166dd455bf2c (patch) | |
| tree | bb4112c5b3340926c4145031fcd9c94ff213d48b /gnu/packages/rust-apps.scm | |
| parent | 838200a1f2a772691db4501a6bded2e53aec4e49 (diff) | |
gnu: Add catppuccin-whiskers.
* gnu/packages/rust-crates.scm (lookup-cargo-inputs) [catppuccin-whiskers]:
New entry.
* gnu/packages/rust-apps.scm (catppuccin-whiskers): New variable.
Change-Id: I9e5c7a63284956d01840fca54f9f963bbd460d8c
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'gnu/packages/rust-apps.scm')
| -rw-r--r-- | gnu/packages/rust-apps.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 3fa92ae6038..d13e866819b 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2024 Danny Milosavljevic <dannym@friendly-machines.com> ;;; Copyright © 2024 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2025 Gabriel Santos <gabrielsantosdesouza@disroot.org> +;;; Copyright © 2025 Timo Wilken <guix@twilken.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -382,6 +383,28 @@ the terminal.") "This package provides C to Rust translation, refactoring, and cross-checking.") (license license:bsd-3))) +(define-public catppuccin-whiskers + (package + (name "catppuccin-whiskers") + (version "2.5.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "catppuccin-whiskers" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0jjh8qkc7a0vn9wshfi6qmn8b03694kdz9r95fgxmw0fpw6vpnjn")))) + (build-system cargo-build-system) + (arguments '(#:install-source? #f)) + (inputs (cargo-inputs 'catppuccin-whiskers)) + (home-page "https://github.com/catppuccin/whiskers") + (synopsis "Soothing port creation tool for the high-spirited") + (description + "Whiskers is a helper tool that is custom-built to create ports of the +Catppuccin color theme, allowing developers to define template files which +the palette can be injected into.") + (license license:expat))) + (define-public cargo-audit (package (name "cargo-audit") |
