civodul pushed a commit to branch master
in repository guix.
commit 55d5a5edc74906e0ba659ba1a58e801144fa7a0b
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Feb 24 15:07:56 2023 +0100
gnu: [email protected]: Remove input labels.
* gnu/packages/gnome.scm (goffice-0.8)[inputs]: Remove label, use
'modify-inputs'.
---
gnu/packages/gnome.scm | 10 +++++-----
1 file 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