mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
53408bddd5
2.9: http://lists.gnu.org/archive/html/info-gnu/2019-04/msg00009.html 2.8: http://lists.gnu.org/archive/html/info-gnu/2019-02/msg00011.html also: pname, enable tests, remove stale TODO
48 lines
1.5 KiB
Nix
48 lines
1.5 KiB
Nix
{ fetchurl, stdenv, libtool, gettext, zlib, readline, gsasl
|
|
, guile, python, pcre, libffi, groff }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dico";
|
|
version = "2.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "0i9xqhy3h5nlizcmav4mv5ay8ivdgn4l4k0k7fxix3fsc87nijyr";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
buildInputs =
|
|
[ libtool gettext zlib readline gsasl guile python pcre libffi groff ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Flexible dictionary server and client implementing RFC 2229";
|
|
homepage = https://www.gnu.org/software/dico/;
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.linux;
|
|
|
|
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.
|
|
'';
|
|
};
|
|
}
|