gnu: libmateweather: Update to 1.16.1.
* gnu/packages/mate.scm (libmateweather): Update to 1.16.1. [arguments]: Build with gtk+-3. [propagated-inputs]: Remove gtk+-2, move gdk-pixbuf ... [inputs]: ... to here. Add gtk+-3.
This commit is contained in:
parent
72246dc029
commit
065999807d
1 changed files with 11 additions and 8 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
|
;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -125,7 +126,7 @@ (define-public mate-desktop
|
||||||
(define-public libmateweather
|
(define-public libmateweather
|
||||||
(package
|
(package
|
||||||
(name "libmateweather")
|
(name "libmateweather")
|
||||||
(version "1.12.1")
|
(version "1.16.1")
|
||||||
(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/"
|
||||||
|
@ -133,11 +134,12 @@ (define-public libmateweather
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qrq6z6knybixnxmsvkw58hm033m91inf523mbvzgv2r822fpakl"))))
|
"0w1b8b1ckmkbvwnqi9yh2lwbskzhz99s5yxdkar5xiqylnjrwmm3"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
`(,(string-append "--with-zoneinfo-dir="
|
`("--with-gtk=3.0"
|
||||||
|
,(string-append "--with-zoneinfo-dir="
|
||||||
(assoc-ref %build-inputs "tzdata")
|
(assoc-ref %build-inputs "tzdata")
|
||||||
"/share/zoneinfo"))
|
"/share/zoneinfo"))
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -156,16 +158,17 @@ (define-public libmateweather
|
||||||
("glib:bin" ,glib "bin")))
|
("glib:bin" ,glib "bin")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("dconf" ,dconf)
|
`(("dconf" ,dconf)
|
||||||
|
("gdk-pixbuf" ,gdk-pixbuf)
|
||||||
|
("gtk+" ,gtk+)
|
||||||
("tzdata" ,tzdata)))
|
("tzdata" ,tzdata)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("gtk+" ,gtk+-2)
|
;; both of these are requires.private in mateweather.pc
|
||||||
("gdk-pixbuf" ,gdk-pixbuf)
|
`(("libsoup" ,libsoup)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)))
|
||||||
("libsoup" ,libsoup)))
|
|
||||||
(home-page "http://mate-desktop.org/")
|
(home-page "http://mate-desktop.org/")
|
||||||
(synopsis "MATE library for weather information from the Internet")
|
(synopsis "MATE library for weather information from the Internet")
|
||||||
(description
|
(description
|
||||||
"This library provides acess to weather information from the internet for
|
"This library provides access to weather information from the internet for
|
||||||
the MATE desktop environment.")
|
the MATE desktop environment.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue