diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-10-15 23:36:39 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-10-15 23:42:15 +0800 |
commit | 2079087cccb4371a9a1d32aee358e7bc81846293 (patch) | |
tree | bec72c8c5cd163208d82f14e5a90666bf6f5fea8 /gnu/packages/gtk.scm | |
parent | 9fe2e17dd1b129605603f3e1271a4ae020d0a12e (diff) | |
download | guix-2079087cccb4371a9a1d32aee358e7bc81846293.tar guix-2079087cccb4371a9a1d32aee358e7bc81846293.tar.gz |
gnu: cairomm: Update to 1.12.0.
* gnu/packages/gtk.scm (cairomm): Update to 1.12.0.
[source]: Change to "mirror://gnome/".
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 678d7f4d08..e602a56a48 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -731,14 +731,15 @@ documents.") (define-public cairomm (package (name "cairomm") - (version "1.11.2") + (version "1.12.0") (source (origin - (method url-fetch) - (uri (string-append "http://cairographics.org/releases/cairomm-" - version ".tar.gz")) - (sha256 - (base32 - "138052ybc58q5yl92m2p0br0k0a9g1pi9gfhmn4y220yih4pgxnc")))) + (method url-fetch) + (uri (string-append "mirror://gnome/sources/cairomm/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1rmgs6zjj2vaxh9hsa0944m23fdn1psycqh7bi984qd8jj1xljm5")))) (build-system gnu-build-system) (arguments ;; The examples lack -lcairo. |