nixpkgs/pkgs/servers/dico/default.nix
Tobias Geerinckx-Rice b2d7f4b1ba Use common licence attributes from lib/licenses.nix
Many (less easily automatically converted) old-style strings
remain.

Where there was any possible ambiguity about the exact version or
variant intended, nothing was changed. IANAL, nor a search robot.

Use `with stdenv.lib` wherever it makes sense.
2015-05-27 22:00:06 +02:00

51 lines
1.6 KiB
Nix

{ fetchurl, stdenv, libtool, gettext, zlib, readline, gsasl
, guile, python, pcre, libffi }:
stdenv.mkDerivation rec {
name = "dico-2.2";
src = fetchurl {
url = "mirror://gnu/dico/${name}.tar.xz";
sha256 = "04pjks075x20d19l623mj50bw64g8i41s63z4kzzqcbg9qg96x64";
};
# XXX: Add support for GNU SASL.
buildInputs =
[ libtool gettext zlib readline gsasl guile python pcre libffi ];
# dicod fails to load modules, so the tests fail
doCheck = false;
preBuild = ''
sed -i -e '/gets is a security/d' gnu/stdio.in.h
'';
meta = with stdenv.lib; {
description = "Flexible dictionary server and client implementing RFC 2229";
homepage = http://www.gnu.org/software/dico/;
license = with licenses; gpl3Plus;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
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.
'';
};
}