goldendict: 1.5.0.rc2 -> 2018-06-13

fixes build
This commit is contained in:
Gabriel Ebner 2018-07-01 11:57:58 +02:00
parent 6e54e9253a
commit 693a4ce209

View File

@ -1,12 +1,14 @@
{ stdenv, fetchurl, pkgconfig, libXtst, libvorbis, hunspell { stdenv, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell
, libao, ffmpeg, libeb, lzo, xz, libtiff , libao, ffmpeg, libeb, lzo, xz, libtiff
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }: , qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "goldendict-1.5.0.rc2"; name = "goldendict-2018-06-13";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/goldendict/goldendict/archive/1.5.0-RC2.tar.gz"; owner = "goldendict";
sha256 = "1pizz39l61rbps0wby75fkvzyrah805257j33siqybwhsfiy1kmw"; repo = "goldendict";
rev = "48e850c7ec11d83cba7499f7fdce377ef3849bbb";
sha256 = "0i4q4waqjv45hgwillvjik97pg26kwlmz4925djjkx8s6hxgjlq9";
}; };
nativeBuildInputs = [ pkgconfig qmake ]; nativeBuildInputs = [ pkgconfig qmake ];
@ -22,6 +24,6 @@ stdenv.mkDerivation rec {
description = "A feature-rich dictionary lookup program"; description = "A feature-rich dictionary lookup program";
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.astsmtl ]; maintainers = with stdenv.lib.maintainers; [ gebner astsmtl ];
}; };
} }