2018-07-01 09:57:58 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell
|
2016-06-20 15:59:00 +00:00
|
|
|
, libao, ffmpeg, libeb, lzo, xz, libtiff
|
2017-06-02 15:40:19 +00:00
|
|
|
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }:
|
2012-02-05 21:02:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-02 15:40:19 +00:00
|
|
|
|
2018-07-01 09:57:58 +00:00
|
|
|
name = "goldendict-2018-06-13";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "goldendict";
|
|
|
|
repo = "goldendict";
|
|
|
|
rev = "48e850c7ec11d83cba7499f7fdce377ef3849bbb";
|
|
|
|
sha256 = "0i4q4waqjv45hgwillvjik97pg26kwlmz4925djjkx8s6hxgjlq9";
|
2012-02-05 21:02:27 +00:00
|
|
|
};
|
2015-09-23 17:06:29 +00:00
|
|
|
|
2017-09-14 19:24:37 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2016-04-16 23:32:05 +00:00
|
|
|
buildInputs = [
|
2017-09-14 19:24:37 +00:00
|
|
|
qtbase qtsvg qtwebkit qtx11extras qttools
|
2017-06-02 15:40:19 +00:00
|
|
|
libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff
|
2016-04-16 23:32:05 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
qmakeFlags = [ "CONFIG+=zim_support" ];
|
2012-02-05 21:02:27 +00:00
|
|
|
|
2018-09-01 11:53:01 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-02-05 21:02:27 +00:00
|
|
|
homepage = http://goldendict.org/;
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A feature-rich dictionary lookup program";
|
2018-09-01 11:53:01 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ gebner astsmtl ];
|
|
|
|
license = licenses.gpl3Plus;
|
2012-02-05 21:02:27 +00:00
|
|
|
};
|
|
|
|
}
|