dictd: Update to latest upstream (0.12.1).

This commit is contained in:
Petr Rockai 2014-01-29 18:49:44 +01:00
parent 83acdb6f87
commit 8162222071
3 changed files with 26 additions and 10 deletions

View file

@ -0,0 +1,11 @@
--- Makefile.in~ 2011-03-06 18:52:54.000000000 +0100
+++ Makefile.in 2014-01-29 19:04:51.384844897 +0100
@@ -123,7 +123,7 @@
%: %.o
$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ -static \
- $^ $(OBJS) $(LDFLAGS) -lz ${LIBS}
+ $(^:.o=.lo) $(OBJS) $(LDFLAGS) -lz ${LIBS}
include $(srcdir)/deps

View file

@ -1,19 +1,22 @@
{ stdenv, fetchurl, which, bison, flex }:
{ stdenv, fetchurl, which, bison, flex, libmaa, zlib, libtool }:
stdenv.mkDerivation {
name = "dictd-1.9.15";
stdenv.mkDerivation rec {
version = "1.12.1";
name = "dictd-${version}";
src = fetchurl {
url = mirror://sourceforge/dict/dictd-1.9.15.tar.gz;
sha256 = "0p41yf72l0igmshz6vxy3hm51z25600vrnb9j2jpgws4c03fqnac";
url = "mirror://sourceforge/dict/dictd-${version}.tar.gz";
sha256 = "0min6v60b6z5mrymyjfwzx8nv6rdm8pd8phlwl6v2jl5vkngcdx2";
};
buildInputs = [ flex bison which ];
buildInputs = [ flex bison which libmaa zlib libtool ];
patchPhase = "patch -p0 < ${./buildfix.diff}";
configureFlags = "--datadir=/var/run/current-system/share/dictd";
meta = {
meta = with stdenv.lib; {
description = "Dict protocol server and client";
maintainers = with stdenv.lib.maintainers; mornfall;
maintainers = maintainers.mornfall;
platforms = platforms.linux;
};
}

View file

@ -6102,7 +6102,9 @@ let
dico = callPackage ../servers/dico { };
dict = callPackage ../servers/dict { };
dict = callPackage ../servers/dict {
libmaa = callPackage ../servers/dict/libmaa.nix {};
};
dictdDBs = recurseIntoAttrs (import ../servers/dict/dictd-db.nix {
inherit builderDefs;