nixpkgs/pkgs/applications/misc/goldendict/default.nix

28 lines
831 B
Nix
Raw Normal View History

2016-06-20 17:59:00 +02:00
{ stdenv, fetchurl, pkgconfig, libXtst, libvorbis, hunspell
, libao, ffmpeg, libeb, lzo, xz, libtiff
2017-06-02 17:40:19 +02:00
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }:
stdenv.mkDerivation rec {
2017-06-02 17:40:19 +02:00
2016-06-20 17:59:00 +02:00
name = "goldendict-1.5.0.rc2";
src = fetchurl {
url = "https://github.com/goldendict/goldendict/archive/1.5.0-RC2.tar.gz";
sha256 = "1pizz39l61rbps0wby75fkvzyrah805257j33siqybwhsfiy1kmw";
};
2015-09-23 19:06:29 +02:00
nativeBuildInputs = [ pkgconfig qmake ];
2016-04-17 01:32:05 +02:00
buildInputs = [
qtbase qtsvg qtwebkit qtx11extras qttools
2017-06-02 17:40:19 +02:00
libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff
2016-04-17 01:32:05 +02:00
];
qmakeFlags = [ "CONFIG+=zim_support" ];
meta = {
homepage = http://goldendict.org/;
description = "A feature-rich dictionary lookup program";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.astsmtl ];
};
}