gnu: mate-themes: Update to 3.20.9.

* gnu/packages/mate.scm (mate-themes): Update to 3.20.9.
[source]: Update package location.
[inputs]: Remove gtk+-2, add gtk+-3.
[description]: Add note about dual gtk+-2/gtk+-3 support.
This commit is contained in:
Efraim Flashner 2016-11-08 22:53:28 +02:00
parent 27caff1b5d
commit e3ec6c806a
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 8 additions and 8 deletions

View File

@ -61,23 +61,22 @@
(define-public mate-themes (define-public mate-themes
(package (package
(name "mate-themes") (name "mate-themes")
(version "1.12.2") (version (package-version gtk+))
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://pub.mate-desktop.org/releases/" (uri (string-append "http://pub.mate-desktop.org/releases/themes/"
(version-major+minor version) "/"
name "-gtk"
(version-major+minor (package-version gtk+)) (version-major+minor (package-version gtk+))
"-" version ".tar.xz")) "/mate-themes-" (package-version gtk+)
".tar.xz"))
(sha256 (sha256
(base32 (base32
"0kyrlgs5azzj60gnxx2n9qszcligxn959wr42wr0iqnrpiygk5nf")))) "12p6xvqs8smbk9nivi43089fiw1jbb3g9836arr0sksmmziklnvy"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("intltool" ,intltool))) ("intltool" ,intltool)))
(inputs (inputs
`(("gtk+" ,gtk+-2) `(("gtk+" ,gtk+)
("gdk-pixbuf" ,gdk-pixbuf) ("gdk-pixbuf" ,gdk-pixbuf)
("gtk-engines" ,gtk-engines) ("gtk-engines" ,gtk-engines)
("murrine" ,murrine))) ("murrine" ,murrine)))
@ -86,7 +85,8 @@
"Official themes for the MATE desktop") "Official themes for the MATE desktop")
(description (description
"This package includes the standard themes for the MATE desktop, for "This package includes the standard themes for the MATE desktop, for
example Menta, TraditionalOk, GreenLaguna or BlackMate.") example Menta, TraditionalOk, GreenLaguna or BlackMate. This package has
themes for both gtk+-2 and gtk+-3.")
(license (list license:lgpl2.1+ license:cc-by-sa3.0 license:gpl3+ (license (list license:lgpl2.1+ license:cc-by-sa3.0 license:gpl3+
license:gpl2+)))) license:gpl2+))))