mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
838200a1f2
commit
b4c583e7af
2 changed files with 271 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue