Merge branch 'staging' into core-updates
[jackhill/guix/guix.git] / gnu / packages / fribidi.scm
CommitLineData
b005157c
MB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Marek Benc <merkur32@gmail.com>
f6c51f59 3;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
cd4c6039 4;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
b005157c
MB
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages fribidi)
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
f6c51f59
EF
25 #:use-module (guix licenses)
26 #:use-module (gnu packages))
b005157c
MB
27
28(define-public fribidi
29 (package
30 (name "fribidi")
b9f71df3 31 (version "1.0.8")
b005157c
MB
32 (source
33 (origin
34 (method url-fetch)
35 (uri
a2f0b012
MB
36 (string-append "https://github.com/fribidi/fribidi/releases"
37 "/download/v" version "/fribidi-" version
b005157c
MB
38 ".tar.bz2"))
39 (sha256
b9f71df3 40 (base32 "0v0ybhck9vz4yayihydknmikslh3xfxygzywnh9rcamdhs6vdiwl"))))
b005157c
MB
41 (build-system gnu-build-system)
42 (synopsis "Implementation of the Unicode bidirectional algorithm")
43 (description
44 "GNU FriBidi is an implementation of the Unicode Bidirectional
45Algorithm. This algorithm is used to properly display text in left-to-right
46or right-to-left ordering as necessary.")
a2f0b012 47 (home-page "https://github.com/fribidi/fribidi")
b005157c 48 (license lgpl2.1+)))