diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-12-05 18:57:16 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-05 23:54:15 +0000 |
| commit | 9af0f180575f42e44f8f92ed94b3e980ea6f9053 (patch) | |
| tree | e2d3028e6bc3f3ffc5142faa6eaab0486e25ab9f | |
| parent | 2d2313386686e867d27e2b36d91c982b43782ca0 (diff) | |
gnu: Add go-github-com-catppuccin-go.
* gnu/packages/golang-xyz.scm (go-github-com-catppuccin-go): New variable.
Change-Id: Ie528bca1bca2cb337e3f54c482284671a5d6cc1c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7124e21fdbf..31ac4f95925 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3419,6 +3419,31 @@ exit).") (license (list license:bsd-3 license:expat)))) +(define-public go-github-com-catppuccin-go + (package + (name "go-github-com-catppuccin-go") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/catppuccin/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1gqbgsap69abq1jdc4dhxvsrfb9yqc9423x6za6d7slfky1f736d")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/catppuccin/go")) + (home-page "https://github.com/catppuccin/go") + (synopsis "Catppuccin color palette for Go") + (description + "This package provides the @url{https://catppuccin.com/palette/Catppuccin +color palette} for Go applications. Catppuccin is a community-driven pastel +theme with four flavors: Latte, Frappe, Macchiato, and Mocha.") + (license license:expat))) + (define-public go-github-com-cention-sany-utf7 (package (name "go-github-com-cention-sany-utf7") |
