diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-08-14 21:53:11 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-08-15 05:45:44 +0300 |
commit | 169bdeccd04d7bb21c685fd7d6a8b113ea10f79b (patch) | |
tree | 75a1acd671aabc10aca7f9dc68ce67c1539f9775 /gnu | |
parent | f7bddabc029791e1374c0dc5d20b2c1a095661f3 (diff) | |
download | guix-169bdeccd04d7bb21c685fd7d6a8b113ea10f79b.tar.gz guix-169bdeccd04d7bb21c685fd7d6a8b113ea10f79b.zip |
gnu: dunst: Build with librsvg-for-system.
* gnu/packages/dunst.scm (dunst)[inputs]: Replace librsvg with
librsvg-for-system.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/dunst.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/dunst.scm b/gnu/packages/dunst.scm index 0855e45084..4a8ff59ec9 100644 --- a/gnu/packages/dunst.scm +++ b/gnu/packages/dunst.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2017, 2018 Alex Kost <alezost@gmail.com> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> -;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2019, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> @@ -69,7 +69,7 @@ which)) (inputs (list dbus - librsvg ; for svg support + (librsvg-for-system) ; for svg support glib cairo pango |