diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-01-29 20:37:56 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-01-29 20:46:55 +0200 |
commit | a6a9e628693ed2d49cd9cdfca597fd4e63bbdef0 (patch) | |
tree | 5f3cbe0365f39fd56a462b454d4922aea295850e /gnu/packages/dico.scm | |
parent | d2434298e7c0a1351f72230afe93d34cb4117204 (diff) | |
download | patches-a6a9e628693ed2d49cd9cdfca597fd4e63bbdef0.tar patches-a6a9e628693ed2d49cd9cdfca597fd4e63bbdef0.tar.gz |
gnu: dico: Update to 2.5.
* gnu/packages/dico.scm (dico): Update to 2.5.
[inputs]: Add wordnet.
Diffstat (limited to 'gnu/packages/dico.scm')
-rw-r--r-- | gnu/packages/dico.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/dico.scm b/gnu/packages/dico.scm index 5d163a8212..b374a9b996 100644 --- a/gnu/packages/dico.scm +++ b/gnu/packages/dico.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -37,14 +37,14 @@ (define-public dico (package (name "dico") - (version "2.4") + (version "2.5") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/dico/dico-" version ".tar.xz")) (sha256 (base32 - "13m7vahfbdj7hb38bjgd4cmfswavvxrcpppj9n4m4rar3wyzg52g")))) + "0szm3z4xvq0pjj8kxl4paq63byamf281kzn1la0cdm5ngavypxxq")))) (build-system gnu-build-system) (arguments '(#:configure-flags (list (string-append "--with-guile-site-dir=" %output @@ -67,7 +67,7 @@ ("groff" ,groff) ("readline" ,readline) ("zlib" ,zlib) - ;; ("wordnet" ,wordnet) ;FIXME: link failure + ("wordnet" ,wordnet) ("libltdl" ,libltdl))) (home-page "https://www.gnu.org/software/dico/") (synopsis "Implementation of DICT server (RFC 2229)") |