2010-07-22 10:01:20 +01:00
|
|
|
{ fetchurl, stdenv, libtool, gettext, zlib, readline, gsasl
|
2016-08-12 10:22:31 +01:00
|
|
|
, guile, python, pcre, libffi, groff }:
|
2009-04-01 18:31:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-24 14:39:47 +01:00
|
|
|
pname = "dico";
|
|
|
|
version = "2.9";
|
2009-04-01 18:31:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-24 14:39:47 +01:00
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0i9xqhy3h5nlizcmav4mv5ay8ivdgn4l4k0k7fxix3fsc87nijyr";
|
2009-04-01 18:31:44 +01:00
|
|
|
};
|
|
|
|
|
2016-08-24 19:16:48 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2013-11-29 00:10:23 +00:00
|
|
|
buildInputs =
|
2016-08-12 10:22:31 +01:00
|
|
|
[ libtool gettext zlib readline gsasl guile python pcre libffi groff ];
|
2009-04-01 18:31:44 +01:00
|
|
|
|
2019-04-24 14:39:47 +01:00
|
|
|
doCheck = true;
|
2013-11-29 00:10:23 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Flexible dictionary server and client implementing RFC 2229";
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/dico/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2013-11-29 00:10:23 +00:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2018-09-20 21:19:56 +01:00
|
|
|
platforms = platforms.linux;
|
2009-04-01 18:31:44 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU Dico is a flexible modular implementation of DICT server
|
|
|
|
(RFC 2229). In contrast to another existing servers, it does
|
|
|
|
not depend on particular database format, instead it handles
|
|
|
|
database accesses using loadable modules.
|
|
|
|
|
|
|
|
The package includes several loadable modules for interfacing
|
|
|
|
with various database formats, among them a module for dict.org
|
|
|
|
databases and a module for transparently accessing Wikipedia or
|
|
|
|
Wiktionary sites as a dictionary database.
|
|
|
|
|
|
|
|
New modules can easily be written in C, Guile or Python. The
|
|
|
|
module API is mature and well documented.
|
|
|
|
|
|
|
|
A web interface serving several databases is available.
|
|
|
|
|
|
|
|
The package also includes a console client program for querying
|
|
|
|
remote dictionary servers.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|