gnu: dunst: Update to 1.9.2.
* gnu/packages/dunst.scm (dunst): Update to 1.9.2. [arguments]: Use gexps. Change-Id: Ic13f1679074462918991a1ceba8571a46e721224 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
aa98a97607
commit
a482d3d9ba
1 changed files with 39 additions and 37 deletions
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro>
|
;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro>
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
|
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
|
||||||
|
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -24,6 +25,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages dunst)
|
(define-module (gnu packages dunst)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
@ -41,20 +43,22 @@
|
||||||
(define-public dunst
|
(define-public dunst
|
||||||
(package
|
(package
|
||||||
(name "dunst")
|
(name "dunst")
|
||||||
(version "1.9.0")
|
(version "1.9.2")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/dunst-project/dunst")
|
(url "https://github.com/dunst-project/dunst")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "17zrw7jrnlyln81pxw7p4jgvl7j1w1gf488nfskhns6j6dcz90gh"))))
|
||||||
"1nfxf2rahngxpy606yrizrz16d0pswl5sa9jfzpv7h19x6xy24vx"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
(list
|
||||||
#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
#:tests? #f ;no check target
|
||||||
|
#:make-flags #~(list (string-append "CC="
|
||||||
|
#$(cc-for-target))
|
||||||
(string-append "PREFIX=" %output)
|
(string-append "PREFIX=" %output)
|
||||||
(string-append "SYSCONFDIR=" %output "/etc")
|
(string-append "SYSCONFDIR=" %output "/etc")
|
||||||
;; Otherwise it tries to install service file
|
;; Otherwise it tries to install service file
|
||||||
|
@ -62,13 +66,11 @@
|
||||||
(string-append "SERVICEDIR_DBUS=" %output
|
(string-append "SERVICEDIR_DBUS=" %output
|
||||||
"/share/dbus-1/services")
|
"/share/dbus-1/services")
|
||||||
"dunstify")
|
"dunstify")
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(native-inputs
|
(native-inputs (list pkg-config perl ;for pod2man
|
||||||
(list pkg-config perl ; for pod2man
|
|
||||||
which))
|
which))
|
||||||
(inputs
|
(inputs (list dbus
|
||||||
(list dbus
|
|
||||||
(librsvg-for-system) ;for svg support
|
(librsvg-for-system) ;for svg support
|
||||||
glib
|
glib
|
||||||
cairo
|
cairo
|
||||||
|
|
Reference in a new issue