mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: fribidi: Update to 1.0.1.
* gnu/packages/fribidi.scm (fribidi): Update to 1.0.1. [source](uri): Change to new GitHub URI. [home-page]: Update to redirected URL.
This commit is contained in:
parent
9d2749f62f
commit
a2f0b01221
1 changed files with 5 additions and 4 deletions
|
@ -26,15 +26,16 @@ (define-module (gnu packages fribidi)
|
||||||
(define-public fribidi
|
(define-public fribidi
|
||||||
(package
|
(package
|
||||||
(name "fribidi")
|
(name "fribidi")
|
||||||
(version "0.19.7")
|
(version "1.0.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "http://fribidi.org/download/" name "-" version
|
(string-append "https://github.com/fribidi/fribidi/releases"
|
||||||
|
"/download/v" version "/fribidi-" version
|
||||||
".tar.bz2"))
|
".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "13jsb5qadlhsaxkbrb49nqslmbh904vvzhsm5mm2ghmv29i2l8h8"))))
|
(base32 "1r3ll7apx4b8bhvdkwi71y06df9kvr4q3asvajswvdlh0pbq5cf1"))))
|
||||||
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(synopsis "Implementation of the Unicode bidirectional algorithm")
|
(synopsis "Implementation of the Unicode bidirectional algorithm")
|
||||||
|
@ -42,5 +43,5 @@ (define-public fribidi
|
||||||
"GNU FriBidi is an implementation of the Unicode Bidirectional
|
"GNU FriBidi is an implementation of the Unicode Bidirectional
|
||||||
Algorithm. This algorithm is used to properly display text in left-to-right
|
Algorithm. This algorithm is used to properly display text in left-to-right
|
||||||
or right-to-left ordering as necessary.")
|
or right-to-left ordering as necessary.")
|
||||||
(home-page "http://fribidi.org/")
|
(home-page "https://github.com/fribidi/fribidi")
|
||||||
(license lgpl2.1+)))
|
(license lgpl2.1+)))
|
||||||
|
|
Loading…
Reference in a new issue