mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
7ddb23ba2c
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dicod -h` got 0 exit code - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dicod --help` got 0 exit code - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dicod -V` and found version 2.5 - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dicod --version` and found version 2.5 - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dico -h` got 0 exit code - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dico --help` got 0 exit code - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dico help` got 0 exit code - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dico -V` and found version 2.5 - ran `/nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5/bin/dico --version` and found version 2.5 - found 2.5 with grep in /nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5 - found 2.5 in filename of file in /nix/store/gd29d0p765hn7vy9772x64f9i3nfi3lw-dico-2.5
53 lines
1.7 KiB
Nix
53 lines
1.7 KiB
Nix
{ fetchurl, stdenv, libtool, gettext, zlib, readline, gsasl
|
|
, guile, python, pcre, libffi, groff }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dico-2.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/dico/${name}.tar.xz";
|
|
sha256 = "0szm3z4xvq0pjj8kxl4paq63byamf281kzn1la0cdm5ngavypxxq";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
# XXX: Add support for GNU SASL.
|
|
buildInputs =
|
|
[ libtool gettext zlib readline gsasl guile python pcre libffi groff ];
|
|
|
|
# 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 = 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.
|
|
'';
|
|
};
|
|
}
|