me
/
guix
Archived
1
0
Fork 0

gnu: dictionaries: Use license prefix.

* gnu/packages/dictionaries.scm: Import (guix licenses) with license:
prefix. Fix all license fields.
master
Arun Isaac 2018-11-28 22:06:25 +05:30
parent 42c3e00c20
commit 5790d163a4
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 9 additions and 7 deletions

View File

@ -5,6 +5,7 @@
;;; Copyright © 2017, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2017, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Pierre-Antoine Rouby <contact@parouby.fr> ;;; Copyright © 2018 Pierre-Antoine Rouby <contact@parouby.fr>
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -22,7 +23,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages dictionaries) (define-module (gnu packages dictionaries)
#:use-module (guix licenses) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
@ -87,7 +88,7 @@
(description (description
"V.E.R.A. (Virtual Entity of Relevant Acronyms) is a list of computing "V.E.R.A. (Virtual Entity of Relevant Acronyms) is a list of computing
acronyms distributed as an info document.") acronyms distributed as an info document.")
(license fdl1.3+))) (license license:fdl1.3+)))
(define-public gcide (define-public gcide
(package (package
@ -125,7 +126,7 @@ acronyms distributed as an info document.")
be used via the GNU Dico program or accessed online at be used via the GNU Dico program or accessed online at
http://gcide.gnu.org.ua/") http://gcide.gnu.org.ua/")
(home-page "http://gcide.gnu.org.ua/") (home-page "http://gcide.gnu.org.ua/")
(license gpl3+))) (license license:gpl3+)))
(define-public diction (define-public diction
;; Not quite a dictionary, not quite a spell checker either… ;; Not quite a dictionary, not quite a spell checker either…
@ -147,7 +148,7 @@ Diction is used to identify wordy and commonly misused phrases in a
body of text. Style instead analyzes surface aspects of a written body of text. Style instead analyzes surface aspects of a written
work, such as sentence length and other readability measures.") work, such as sentence length and other readability measures.")
(home-page "https://www.gnu.org/software/diction/") (home-page "https://www.gnu.org/software/diction/")
(license gpl3+))) (license license:gpl3+)))
(define-public ding (define-public ding
(package (package
@ -207,7 +208,7 @@ work, such as sentence length and other readability measures.")
(description "Ding is a dictionary lookup program for the X window system. (description "Ding is a dictionary lookup program for the X window system.
It comes with a German-English dictionary with approximately 270,000 entries.") It comes with a German-English dictionary with approximately 270,000 entries.")
(home-page "http://www-user.tu-chemnitz.de/~fri/ding/") (home-page "http://www-user.tu-chemnitz.de/~fri/ding/")
(license gpl2+))) (license license:gpl2+)))
(define-public grammalecte (define-public grammalecte
(package (package
@ -234,7 +235,7 @@ a dubious expression is wrong, it will keep silent.
The package provides the command line interface, along with a server The package provides the command line interface, along with a server
and a Python library.") and a Python library.")
(license gpl3+))) (license license:gpl3+)))
(define-public translate-shell (define-public translate-shell
(package (package
@ -283,4 +284,5 @@ and a Python library.")
translator powered by Google Translate (default), Bing Translator, translator powered by Google Translate (default), Bing Translator,
Yandex.Translate and Apertium. It gives you easy access to one of these Yandex.Translate and Apertium. It gives you easy access to one of these
translation engines from your terminal.") translation engines from your terminal.")
(license public-domain))) (license license:public-domain)))