gnu: fribidi: Ungraft.

* gnu/packages/fribidi.scm (fribidi)[replacement]: Remove field.
[source]: Add patch.
(fribidi/fixed): Remove variable.
This commit is contained in:
Efraim Flashner 2019-11-10 10:16:43 +02:00
parent f6c51f598e
commit 4e6febec68
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -27,7 +27,6 @@ (define-module (gnu packages fribidi)
(define-public fribidi
(package
(replacement fribidi/fixed)
(name "fribidi")
(version "1.0.5")
(source
@ -38,7 +37,8 @@ (define-public fribidi
"/download/v" version "/fribidi-" version
".tar.bz2"))
(sha256
(base32 "1kp4b1hpx2ky20ixgy2xhj5iygfl7ps5k9kglh1z5i7mhykg4r3a"))))
(base32 "1kp4b1hpx2ky20ixgy2xhj5iygfl7ps5k9kglh1z5i7mhykg4r3a"))
(patches (search-patches "fribidi-CVE-2019-18397.patch"))))
(build-system gnu-build-system)
(synopsis "Implementation of the Unicode bidirectional algorithm")
(description
@ -47,10 +47,3 @@ (define-public fribidi
or right-to-left ordering as necessary.")
(home-page "https://github.com/fribidi/fribidi")
(license lgpl2.1+)))
(define fribidi/fixed
(package
(inherit fribidi)
(source
(origin (inherit (package-source fribidi))
(patches (search-patches "fribidi-CVE-2019-18397.patch"))))))