gnu: tiramisu: Update to 2.0.20211107.
* gnu/packages/gnome-xyz.scm (tiramisu): Update to 2.0.20211107. [native-inputs]: Add vala. Signed-off-by: Leo Famulari <leo@famulari.name>master
parent
37186ec462
commit
38ea869b20
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2020 Stefan Reichör <stefan@xsteve.at>
|
;;; Copyright © 2020 Stefan Reichör <stefan@xsteve.at>
|
||||||
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||||
;;; Copyright © 2021 Songlin Jiang <hollowman@hollowman.ml>
|
;;; Copyright © 2021 Songlin Jiang <hollowman@hollowman.ml>
|
||||||
|
;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -987,19 +988,17 @@ palette.")
|
||||||
(license license:gpl3))))
|
(license license:gpl3))))
|
||||||
|
|
||||||
(define-public tiramisu
|
(define-public tiramisu
|
||||||
(let ((commit "8eb946dae0e2f98d3850d89e1bb535640e8c3266")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
(package
|
||||||
(name "tiramisu")
|
(name "tiramisu")
|
||||||
(version (git-version "1.0" revision commit))
|
(version "2.0.20211107")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Sweets/tiramisu")
|
(url "https://github.com/Sweets/tiramisu")
|
||||||
(commit commit)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wz2r8369d40vnxswknx0zxzbs03gzv0nc8al4g0ffg972p15j25"))
|
"1n1x1ybbwbanibw7b90k7v4cadagl41li17hz2l8s2sapacvq3mw"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -1017,10 +1016,11 @@ palette.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("glib" ,glib)))
|
`(("glib" ,glib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("vala" ,vala)))
|
||||||
(home-page "https://github.com/Sweets/tiramisu")
|
(home-page "https://github.com/Sweets/tiramisu")
|
||||||
(synopsis "Desktop notifications, the UNIX way")
|
(synopsis "Desktop notifications, the UNIX way")
|
||||||
(description "tiramisu is a notification daemon based on dunst that
|
(description "tiramisu is a notification daemon based on dunst that outputs
|
||||||
outputs notifications to STDOUT in order to allow the user to process
|
notifications to STDOUT in order to allow the user to process notifications any
|
||||||
notifications any way they prefer.")
|
way they prefer.")
|
||||||
(license license:expat))))
|
(license license:expat)))
|
||||||
|
|
Reference in New Issue