2021-01-11 08:54:33 +01:00
|
|
|
{ fetchurl, lib, stdenv, libtool, gettext, zlib, readline, gsasl
|
2016-08-12 11:22:31 +02:00
|
|
|
, guile, python, pcre, libffi, groff }:
|
2009-04-01 19:31:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-24 15:39:47 +02:00
|
|
|
pname = "dico";
|
2020-09-07 18:49:32 +02:00
|
|
|
version = "2.10";
|
2009-04-01 19:31:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-24 15:39:47 +02:00
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
2020-09-07 18:49:32 +02:00
|
|
|
sha256 = "0qag47mzs00d53hnrmh381r0jay42766vp5xrffmzmsn2307x8vl";
|
2009-04-01 19:31:44 +02:00
|
|
|
};
|
|
|
|
|
2016-08-24 20:16:48 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2013-11-29 01:10:23 +01:00
|
|
|
buildInputs =
|
2016-08-12 11:22:31 +02:00
|
|
|
[ libtool gettext zlib readline gsasl guile python pcre libffi groff ];
|
2009-04-01 19:31:44 +02:00
|
|
|
|
2019-04-24 15:39:47 +02:00
|
|
|
doCheck = true;
|
2013-11-29 01:10:23 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Flexible dictionary server and client implementing RFC 2229";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnu.org/software/dico/";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2013-11-29 01:10:23 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2018-09-20 22:19:56 +02:00
|
|
|
platforms = platforms.linux;
|
2009-04-01 19:31:44 +02: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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|