2021-01-11 08:54:33 +01:00
|
|
|
{ fetchurl, lib, stdenv, libtool, gettext, zlib, readline, gsasl
|
2022-09-30 02:43:58 +02:00
|
|
|
, guile, python3, pcre, libffi, groff, libxcrypt }:
|
2009-04-01 19:31:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-24 15:39:47 +02:00
|
|
|
pname = "dico";
|
2021-04-28 07:15:17 +02:00
|
|
|
version = "2.11";
|
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";
|
2021-04-28 07:15:17 +02:00
|
|
|
sha256 = "sha256-rB+Y4jPQ+srKrBBZ87gThKVZLib9TDCCrtAD9l4lLFo=";
|
2009-04-01 19:31:44 +02:00
|
|
|
};
|
|
|
|
|
2016-08-24 20:16:48 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-11-18 23:18:35 +01:00
|
|
|
nativeBuildInputs = [ groff ];
|
|
|
|
|
2013-11-29 01:10:23 +01:00
|
|
|
buildInputs =
|
2022-09-30 02:43:58 +02:00
|
|
|
[ libtool gettext zlib readline gsasl guile python3 pcre libffi libxcrypt ];
|
2021-11-18 23:18:35 +01:00
|
|
|
|
|
|
|
strictDeps = true;
|
2009-04-01 19:31:44 +02:00
|
|
|
|
2023-12-05 00:48:31 +01:00
|
|
|
# ERROR: All 188 tests were run, 90 failed unexpectedly.
|
|
|
|
doCheck = !stdenv.isDarwin;
|
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 ];
|
2021-06-03 16:53:30 +02:00
|
|
|
platforms = platforms.unix;
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|