gnu: dunst: Update to 1.2.0.
* gnu/packages/dunst.scm (dunst): Update to 1.2.0. [inputs]: Update: remove 'libxext' and 'libxft', add 'gtk' and 'libxrandr'. [home-page]: Update for the new location.
This commit is contained in:
parent
1210046d76
commit
9c074e89b1
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2015, 2017 Alex Kost <alezost@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -32,15 +32,16 @@
|
||||||
(define-public dunst
|
(define-public dunst
|
||||||
(package
|
(package
|
||||||
(name "dunst")
|
(name "dunst")
|
||||||
(version "1.1.0")
|
(version "1.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"http://knopwob.org/public/dunst-release/dunst-"
|
"https://github.com/dunst-project/dunst/archive/v"
|
||||||
version ".tar.bz2"))
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0w3hilzwanwsp4q6dxbdj6l0mvpg4fq02wf8isll8kmbx9kz2ay7"))))
|
"1bf5fmmj79wlwi8wzir3rd8czyrxfx16w8q7c957123yz1g5ph53"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no check target
|
'(#:tests? #f ; no check target
|
||||||
|
@ -55,15 +56,15 @@
|
||||||
(inputs
|
(inputs
|
||||||
`(("dbus" ,dbus)
|
`(("dbus" ,dbus)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
|
("gtk" ,gtk+-2)
|
||||||
("cairo" ,cairo)
|
("cairo" ,cairo)
|
||||||
("pango" ,pango)
|
("pango" ,pango)
|
||||||
("libx11" ,libx11)
|
("libx11" ,libx11)
|
||||||
("libxext" ,libxext)
|
|
||||||
("libxft" ,libxft)
|
|
||||||
("libxscrnsaver" ,libxscrnsaver)
|
("libxscrnsaver" ,libxscrnsaver)
|
||||||
("libxinerama" ,libxinerama)
|
("libxinerama" ,libxinerama)
|
||||||
|
("libxrandr" ,libxrandr)
|
||||||
("libxdg-basedir" ,libxdg-basedir)))
|
("libxdg-basedir" ,libxdg-basedir)))
|
||||||
(home-page "http://knopwob.org/dunst")
|
(home-page "https://dunst-project.org/")
|
||||||
(synopsis "Customizable and lightweight notification daemon")
|
(synopsis "Customizable and lightweight notification daemon")
|
||||||
(description
|
(description
|
||||||
"Dunst is a highly configurable and minimalistic notification daemon.
|
"Dunst is a highly configurable and minimalistic notification daemon.
|
||||||
|
|
Loading…
Reference in New Issue