Synchronize package descriptions with the Womb.
[jackhill/guix/guix.git] / gnu / packages / aspell.scm
CommitLineData
708d0ceb
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
1ffa7090 19(define-module (gnu packages aspell)
708d0ceb
LC
20 #:use-module (guix packages)
21 #:use-module (guix download)
22 #:use-module (guix build-system gnu)
23 #:use-module (guix licenses)
1ffa7090 24 #:use-module (gnu packages perl))
708d0ceb
LC
25
26(define-public aspell
27 (package
28 (name "aspell")
29 (version "0.60.6.1")
30 (source
31 (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/aspell/aspell-"
34 version ".tar.gz"))
35 (sha256
36 (base32
37 "1qgn5psfyhbrnap275xjfrzppf5a83fb67gpql0kfqv37al869gm"))))
38 (build-system gnu-build-system)
39 (inputs `(("perl" ,perl)))
40 (home-page "http://aspell.net/")
f50d2669 41 (synopsis "Spell checker")
708d0ceb 42 (description
a22dc0c4
LC
43 "Aspell is a spell-checker which can be used either as a library or as
44a standalone program. Notable features of Aspell include its full support of
45documents written in the UTF-8 encoding and its ability to use multiple
46dictionaries, including personal ones.")
708d0ceb 47 (license lgpl2.1+)))