gnu: guile2.0-git: Remove now unnecessary libgit2 special case.

This is a followup to 0a7aa6922b.

* gnu/packages/guile.scm (guile2.0-git): Remove special 'inputs'
handling, which is no longer necessary.
This commit is contained in:
Ludovic Courtès 2020-10-20 14:34:52 +02:00
parent a9fd59dbd2
commit 2bd60ca1fb
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -769,15 +769,7 @@ (define-public guile2.2-git
(package-for-guile-2.2 guile-git))
(define-public guile2.0-git
(let ((base (package-for-guile-2.0 guile-git)))
(package
(inherit base)
;; Libgit2's Guile test driver requires (ice-9 textual-ports), which is
;; not in Guile 2.0. Thus, keep LIBGIT2 as-is here (i.e., built against
;; Guile 2.2).
(inputs `(("libgit2" ,libgit2)
,@(srfi-1:alist-delete "libgit2"
(package-inputs base)))))))
(package-for-guile-2.0 guile-git))
(define-deprecated-guile3.0-package guile3.0-git)