diff options
Diffstat (limited to 'gnu/packages/freedesktop.scm')
-rw-r--r-- | gnu/packages/freedesktop.scm | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 50364a50ee..52bdcae3fa 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -3,7 +3,7 @@ ;;; 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, 2018, 2019 Ricardo Wurmus <[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]> ;;; Copyright © 2016 Kei Kebreau <[email protected]> @@ -11,7 +11,7 @@ ;;; Copyright © 2017, 2018 Mark H Weaver <[email protected]> ;;; Copyright © 2017, 2018, 2019, 2020 Marius Bakke <[email protected]> ;;; Copyright © 2017, 2018, 2019 Rutger Helling <[email protected]> -;;; Copyright © 2017, 2020 Brendan Tildesley <[email protected]> +;;; Copyright © 2017, 2020, 2021 Brendan Tildesley <[email protected]> ;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Pierre Neidhardt <[email protected]> ;;; Copyright © 2018 Stefan Stefanović <[email protected]> @@ -22,7 +22,6 @@ ;;; Copyright © 2020 Nicolò Balzarotti <[email protected]> ;;; Copyright © 2020 Anders Thuné <[email protected]> ;;; Copyright © 2020 Raghav Gururajan <[email protected]> -;;; Copyright © 2021 Brendan Tildesley <[email protected]> ;;; Copyright © 2021 pineapples <[email protected]> ;;; Copyright © 2021 Sarah Morgensen <[email protected]> ;;; Copyright © 2021 Robby Zambito <[email protected]> @@ -2117,7 +2116,7 @@ Its features include: (define-public plymouth (package (name "plymouth") - (version "0.9.4") + (version "0.9.5") (source (origin (method url-fetch) @@ -2125,7 +2124,7 @@ Its features include: "plymouth/releases/" name "-" version ".tar.xz")) (sha256 (base32 - "0l8kg7b2vfxgz9gnrn0v2w4jvysj2cirp0nxads5sy05397pl6aa")))) + "11nfgw8yzmdbnbmyd1zfvhj4qh19w1nw0nraai08628x6mzjbbpc")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -2151,8 +2150,7 @@ Its features include: (add-after 'unpack 'make-reproducible (lambda _ (substitute* "src/main.c" - (("__DATE__") "\"guix\"")) - #t)) + (("__DATE__") "\"guix\"")))) (add-before 'configure 'fix-docbook (lambda* (#:key inputs #:allow-other-keys) (substitute* "docs/Makefile.in" @@ -2163,8 +2161,7 @@ Its features include: "/manpages/docbook.xsl"))) (setenv "XML_CATALOG_FILES" (string-append (assoc-ref inputs "docbook-xml") - "/xml/dtd/docbook/catalog.xml")) - #t))))) + "/xml/dtd/docbook/catalog.xml"))))))) (inputs `(("glib" ,glib) ("pango" ,pango) @@ -2172,7 +2169,8 @@ Its features include: ("libpng" ,libpng) ("eudev" ,eudev))) (native-inputs - `(("pkg-config" ,pkg-config) + `(("gettext" ,gettext-minimal) + ("pkg-config" ,pkg-config) ("libxslt" ,libxslt) ("docbook-xsl" ,docbook-xsl) ("docbook-xml" ,docbook-xml))) |