mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: fribidi: Ungraft.
* gnu/packages/fribidi.scm (fribidi)[replacement]: Remove field. [source]: Add patch. (fribidi/fixed): Remove variable.
This commit is contained in:
parent
f6c51f598e
commit
4e6febec68
1 changed files with 2 additions and 9 deletions
|
@ -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"))))))
|
||||
|
|
Loading…
Reference in a new issue