dict: 1.13.1 → 1.13.3

This commit is contained in:
Nikolay Korotkiy
2024-12-22 19:13:35 +04:00
parent 26c2f53157
commit aba1241f7f
2 changed files with 12 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
--- Makefile.in~ 2011-03-06 18:52:54.000000000 +0100
+++ Makefile.in 2014-01-29 19:04:51.384844897 +0100
--- a/Makefile.in~ 2011-03-06 18:52:54.000000000 +0100
+++ a/Makefile.in 2014-01-29 19:04:51.384844897 +0100
@@ -123,7 +123,7 @@
%: %.o

View File

@@ -12,13 +12,17 @@
stdenv.mkDerivation rec {
pname = "dictd";
version = "1.13.1";
version = "1.13.3";
src = fetchurl {
url = "mirror://sourceforge/dict/dictd-${version}.tar.gz";
sha256 = "sha256-5PGmfRaJTYSUVp19yUQsFcw4wBHyuWMcfxzGInZlKhs=";
hash = "sha256-GSEp37OPpyP0ipWGx5xRmPxJBP7BdXF2kXMU3Qc/EXE=";
};
patches = [
./buildfix.diff
];
buildInputs = [
libmaa
zlib
@@ -34,28 +38,20 @@ stdenv.mkDerivation rec {
# In earlier versions, parallel building was not supported but it's OK with 1.13
enableParallelBuilding = true;
patchPhase = "patch -p0 < ${./buildfix.diff}";
configureFlags = [
"--datadir=/run/current-system/sw/share/dictd"
"--sysconfdir=/etc"
];
env.NIX_CFLAGS_COMPILE = toString (
lib.optionals stdenv.cc.isClang [
"-Wno-error=implicit-function-declaration"
]
);
postInstall = ''
install -Dm444 -t $out/share/doc/${pname} NEWS README
'';
meta = with lib; {
meta = {
description = "Dict protocol server and client";
homepage = "http://www.dict.org";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ sikmir ];
platforms = lib.platforms.unix;
};
}