diff mbox series

[bug#38763] gnome-themes-extra

Message ID cb4bd61f5df3d550db2194dc0ec27f750261cf57.camel@disroot.org
State Accepted
Headers show
Series [bug#38763] gnome-themes-extra | expand

Commit Message

Raghav Gururajan Dec. 27, 2019, 5:21 p.m. UTC
Hello Guix!

Please find the attached patch to package gnome-themes-extra.

Thank you!

Regards,
RG.

Comments

Julien Lepiller Dec. 28, 2019, 3:21 p.m. UTC | #1
Le Fri, 27 Dec 2019 12:21:57 -0500,
Raghav Gururajan <raghavgururajan@disroot.org> a écrit :

> Hello Guix!
> 
> Please find the attached patch to package gnome-themes-extra.
> 
> Thank you!
> 
> Regards,
> RG.

Pushed as 76ea7632215e65197839657ee8748d51b1caf5cd, thanks!

I modified the description and fixed the commit log (it had a . instead
of a :).
diff mbox series

Patch

From 2106c078360245bc83a6809a7ba4aeffe8dea19c Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Fri, 27 Dec 2019 12:16:07 -0500
Subject: [PATCH] gnu: Add gnome-themes-extra

* gnu/packages/gnome.scm (gnome-themes-extra). New Variable.
---
 gnu/packages/gnome.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 9f657d6de2..adcaf66eb7 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9062,6 +9062,36 @@  and a high score table.")
     (home-page "https://wiki.gnome.org/Apps/Mahjongg")
     (license license:gpl2+)))
 
+(define-public gnome-themes-extra
+  (package
+    (name "gnome-themes-extra")
+    (version "3.28")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnome/sources/" name "/"
+                           (version-major+minor version) "/" name "-"
+                           version ".tar.xz"))
+       (sha256
+        (base32
+         "06aqg9asq2vqi9wr29bs4v8z2bf4manhbhfghf4nvw01y2zs0jvw"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("glib:bin" ,glib "bin")
+       ("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("glib" ,glib)
+       ("gtk+" ,gtk+)
+       ("gtk+-2" ,gtk+-2)
+       ("librsvg" ,librsvg)
+       ("libxml2" ,libxml2)))
+    (home-page "https://gitlab.gnome.org/GNOME/gnome-themes-extra")
+    (synopsis "GNOME Extra Themes")
+    (description
+     "Legacy support for GTK+ 2 versions of Adwaita, Adwaita-dark and HighContrast themes. Also index files needed for Adwaita to be used outside of GNOME")
+    (license license:lgpl2.1+)))
+
 (define-public polari
   (package
     (name "polari")
-- 
2.24.1