summary refs log tree commit diff
path: root/pkgs/applications/misc/goldendict/default.nix
blob: 42d5d83f7bdbdc09300ae5fb195fae1417598598 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell
, libao, ffmpeg, libeb, lzo, xz, libtiff
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }:
stdenv.mkDerivation rec {

  name = "goldendict-2018-06-13";
  src = fetchFromGitHub {
    owner = "goldendict";
    repo = "goldendict";
    rev = "48e850c7ec11d83cba7499f7fdce377ef3849bbb";
    sha256 = "0i4q4waqjv45hgwillvjik97pg26kwlmz4925djjkx8s6hxgjlq9";
  };

  nativeBuildInputs = [ pkgconfig qmake ];
  buildInputs = [
    qtbase qtsvg qtwebkit qtx11extras qttools
    libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff
  ];

  qmakeFlags = [ "CONFIG+=zim_support" ];

  meta = with stdenv.lib; {
    homepage = http://goldendict.org/;
    description = "A feature-rich dictionary lookup program";
    platforms = platforms.linux;
    maintainers = with maintainers; [ gebner astsmtl ];
    license = licenses.gpl3Plus;
  };
}