summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Kehayias <john@guixotic.coop>2025-09-09 17:45:29 -0400
committerMaxim Cournoyer <maxim@guixotic.coop>2025-09-30 16:48:20 +0900
commitc0c4ce6d642bc3ae32ad345c17f77ed57842d667 (patch)
tree8010e7110e2b433265edbb2f843719b4b9e7eb08
parent186eb269c550858467b04a3a802a49dbaa7449be (diff)
gnu: rest: Ungraft.
* gnu/packages/gnome.scm (rest)[replacement]: Remove. [propagated-inputs]: Replace libxml2 with libxml2-next-for-grafting. (rest/fixed): Remove. Change-Id: Ib203ef0697419558c0be0ba2e844293aa20a6061
-rw-r--r--gnu/packages/gnome.scm10
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 084f84dfbd..bff88c4947 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5021,7 +5021,6 @@ files.")
(define-public rest
(package
- (replacement rest/fixed)
(name "rest")
(version "0.8.1")
(source (origin
@@ -5041,7 +5040,7 @@ files.")
(list `(,glib "bin") gobject-introspection pkg-config))
(propagated-inputs
;; rest-0.7.pc refers to all these.
- (list glib libsoup-minimal-2 libxml2))
+ (list glib libsoup-minimal-2 libxml2-next-for-grafting))
(home-page "https://www.gtk.org/")
(synopsis "RESTful web api query library")
(description
@@ -5050,13 +5049,6 @@ claim to be \"RESTful\". It includes convenience wrappers for libsoup and
libxml to ease remote use of the RESTful API.")
(license license:lgpl2.1+)))
-(define-public rest/fixed
- (package
- (inherit rest)
- (propagated-inputs
- (modify-inputs (package-propagated-inputs rest)
- (replace "libxml2" libxml2-next-for-grafting)))))
-
(define-public rest-next
(package
(inherit rest)