nixpkgs/pkgs/servers/dict/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1004 B
Nix
Raw Permalink Normal View History

{
lib,
stdenv,
fetchurl,
which,
bison,
flex,
libmaa,
zlib,
libtool,
}:
stdenv.mkDerivation rec {
pname = "dictd";
2024-12-22 15:13:35 +00:00
version = "1.13.3";
src = fetchurl {
url = "mirror://sourceforge/dict/dictd-${version}.tar.gz";
2024-12-22 15:13:35 +00:00
hash = "sha256-GSEp37OPpyP0ipWGx5xRmPxJBP7BdXF2kXMU3Qc/EXE=";
};
2024-12-22 15:13:35 +00:00
patches = [
./buildfix.diff
];
buildInputs = [
libmaa
zlib
];
nativeBuildInputs = [
bison
flex
libtool
which
];
# In earlier versions, parallel building was not supported but it's OK with 1.13
enableParallelBuilding = true;
configureFlags = [
2019-02-14 18:56:35 +00:00
"--datadir=/run/current-system/sw/share/dictd"
"--sysconfdir=/etc"
];
postInstall = ''
install -Dm444 -t $out/share/doc/${pname} NEWS README
'';
2024-12-22 15:13:35 +00:00
meta = {
description = "Dict protocol server and client";
homepage = "http://www.dict.org";
2024-12-22 15:13:35 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ sikmir ];
platforms = lib.platforms.unix;
};
}