summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Santos <gabrielsantosdesouza@disroot.org>2025-04-25 15:55:02 -0300
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-05-02 17:36:43 +0900
commit8f39ade01922c0dc9513fd6eaa7fa96bc5795d31 (patch)
tree35d6a29625b598a5362b72582f176eb79dc2694e
parent8713e2038f44e66423ccb31c950587d9af9a213b (diff)
gnu: Add adw-gtk3-theme.
* gnu/packages/gnome-xyz.scm (adw-gtk3-theme): New variable. Change-Id: I8931e066130e57446b2f6c669a9f6842ca8f7c27 Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r--gnu/packages/gnome-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 0f41d3d7c3..613d0c1310 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -25,6 +25,7 @@
;;; Copyright © 2025 aurtzy <aurtzy@gmail.com>
;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in>
;;; Copyright © 2025 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2025 Gabriel Santos <gabrielsantosdesouza@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -87,6 +88,29 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg))
+(define-public adw-gtk3-theme
+ (package
+ (name "adw-gtk3-theme")
+ (version "5.10")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lassekongo83/adw-gtk3")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19q180w1f9f35ldvl5r0kqfcxv1jaqf1dni5kfszagpg5f7qrrxi"))))
+ (build-system meson-build-system)
+ (native-inputs (list sassc))
+ (synopsis "Unofficial GTK 3 port of libadwaita")
+ (description
+ "adw is a port of the GTK 4 design for the GTK 3 version. It enables
+color customization by using the same color names as the ones for
+@code{libadwaita}.")
+ (home-page "https://github.com/lassekongo83/adw-gtk3")
+ (license license:lgpl2.1+)))
+
(define-public arc-icon-theme
(package
(name "arc-icon-theme")