diff options
author | Ludovic Courtès <[email protected]> | 2023-02-24 15:07:56 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2023-02-25 00:00:33 +0100 |
commit | 55d5a5edc74906e0ba659ba1a58e801144fa7a0b (patch) | |
tree | d4223eaec3179fe45799ce29cde37ac193e6c9a9 /gnu/packages/gnome.scm | |
parent | 5c4240442cd39fd5d279e080184f0ee2fb1c8af4 (diff) |
gnu: [email protected]: Remove input labels.
* gnu/packages/gnome.scm (goffice-0.8)[inputs]: Remove label, use
'modify-inputs'.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f329ff1dc4..b290a93723 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2015 Andreas Enge <[email protected]> -;;; Copyright © 2014-2022 Ludovic Courtès <[email protected]> +;;; Copyright © 2014-2023 Ludovic Courtès <[email protected]> ;;; Copyright © 2014 Ian Denhardt <[email protected]> ;;; Copyright © 2014, 2016, 2020 Eric Bavier <[email protected]> ;;; Copyright © 2014, 2015 Federico Beffa <[email protected]> @@ -4343,7 +4343,8 @@ Hints specification (EWMH).") (list license:gpl2 license:gpl3)))) (define-public goffice-0.8 - (package (inherit goffice) + (package + (inherit goffice) (version "0.8.17") (source (origin (method url-fetch) @@ -4366,9 +4367,8 @@ Hints specification (EWMH).") (propagated-inputs ;; libgoffice-0.8.pc mentions libgsf-1 (list libgsf)) - (inputs - `(("gtk" ,gtk+-2) - ,@(alist-delete "gtk" (package-inputs goffice)))))) + (inputs (modify-inputs (package-inputs goffice) + (replace "gtk+" gtk+-2))))) (define-public gnumeric (package |