goldendict: 2018-06-13 -> 2019-08-01

This commit is contained in:
Nikolay Korotkiy 2019-08-03 01:04:12 +03:00
parent 5304191cd7
commit 537f3621c6
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -1,25 +1,29 @@
{ stdenv, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell { mkDerivation, lib, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell
, libao, ffmpeg, libeb, lzo, xz, libtiff , libao, ffmpeg, libeb, lzo, xz, libtiff, opencc
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }: , qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }:
stdenv.mkDerivation rec { mkDerivation rec {
name = "goldendict-2018-06-13"; name = "goldendict-2019-08-01";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "goldendict"; owner = "goldendict";
repo = "goldendict"; repo = "goldendict";
rev = "48e850c7ec11d83cba7499f7fdce377ef3849bbb"; rev = "0f951b06a55f3a201891cf645a556e773bda5f52";
sha256 = "0i4q4waqjv45hgwillvjik97pg26kwlmz4925djjkx8s6hxgjlq9"; sha256 = "1d1hn95vhvsmbq9q96l5adn90g0hg25dl01knb4y4v6v9x4yrl2x";
}; };
nativeBuildInputs = [ pkgconfig qmake ]; nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ buildInputs = [
qtbase qtsvg qtwebkit qtx11extras qttools qtbase qtsvg qtwebkit qtx11extras qttools
libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff opencc
]; ];
qmakeFlags = [ "CONFIG+=zim_support" ]; qmakeFlags = [
"goldendict.pro"
"CONFIG+=zim_support"
"CONFIG+=chinese_conversion_support"
];
meta = with stdenv.lib; { meta = with lib; {
homepage = http://goldendict.org/; homepage = http://goldendict.org/;
description = "A feature-rich dictionary lookup program"; description = "A feature-rich dictionary lookup program";
platforms = platforms.linux; platforms = platforms.linux;