biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / dict / default.nix
blobea7cb80b8fc0c2d5e00aacf43ef835c7405fb217
1 { lib, stdenv, fetchurl, which, bison, flex, libmaa, zlib, libtool }:
3 stdenv.mkDerivation rec {
4   pname = "dictd";
5   version = "1.13.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/dict/dictd-${version}.tar.gz";
9     sha256 = "sha256-5PGmfRaJTYSUVp19yUQsFcw4wBHyuWMcfxzGInZlKhs=";
10   };
12   buildInputs = [ libmaa zlib ];
14   nativeBuildInputs = [ bison flex libtool which ];
16   # In earlier versions, parallel building was not supported but it's OK with 1.13
17   enableParallelBuilding = true;
19   patchPhase = "patch -p0 < ${./buildfix.diff}";
21   configureFlags = [
22     "--datadir=/run/current-system/sw/share/dictd"
23     "--sysconfdir=/etc"
24   ];
26   postInstall = ''
27     install -Dm444 -t $out/share/doc/${pname} NEWS README
28   '';
30   meta = with lib; {
31     description = "Dict protocol server and client";
32     homepage = "http://www.dict.org";
33     license = licenses.gpl2Plus;
34     maintainers = with maintainers; [ sikmir ];
35     platforms = platforms.unix;
36   };