Revert "Revert "dictd: Update to latest upstream (0.12.1)."" and add the
missing libmaa.nix.
This reverts commit d59778678a.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user