diff options
author | Ludovic Courtès <[email protected]> | 2021-11-18 15:38:32 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2021-11-18 15:38:32 +0100 |
commit | 62b93a5c9f3ce42c9a550908cff540952f1673ee (patch) | |
tree | 32c17f9742889bea97e79f734901ec5347e8d18b /gnu | |
parent | 53d5d66378f07ddade91d747271526eba650199f (diff) |
gnu: appstream: Link against libsoup 2.
This version of AppStream fails to build against libsoup 3.x.
* gnu/packages/freedesktop.scm (appstream)[inputs]: Replace LIBSOUP by
LIBSOUP-MINIMAL-2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/freedesktop.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 003da5c7a5..d1cfad32b9 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2015 Andreas Enge <[email protected]> ;;; Copyright © 2015 Sou Bunnbu <[email protected]> ;;; Copyright © 2015, 2017 Andy Wingo <[email protected]> -;;; Copyright © 2015, 2016, 2017, 2019 Ludovic Courtès <[email protected]> +;;; Copyright © 2015-2017, 2019, 2021 Ludovic Courtès <[email protected]> ;;; Copyright © 2015, 2017, 2018, 2019, 2021 Ricardo Wurmus <[email protected]> ;;; Copyright © 2015 David Hashe <[email protected]> ;;; Copyright © 2016, 2017, 2019, 2021 Efraim Flashner <[email protected]> @@ -191,7 +191,7 @@ ("python" ,python-wrapper) ("xsltproc" ,libxslt))) (inputs - `(("libsoup" ,libsoup) + `(("libsoup-minimal" ,libsoup-minimal-2) ("libstemmer" ,libstemmer) ("libxml2" ,libxml2) ("libyaml" ,libyaml) |