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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, mkDerivation, fetchFromGitHub, pkg-config
2020-02-08 14:36:28 +03:00
, libXtst, libvorbis, hunspell, lzo, xz, bzip2, libiconv
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake
, withCC ? true, opencc
, withEpwing ? true, libeb
, withExtraTiff ? true, libtiff
, withFFmpeg ? true, libao, ffmpeg
2020-02-08 14:36:28 +03:00
, withMultimedia ? true
2020-06-04 12:19:04 +03:00
, withZim ? true, zstd }:
2020-02-08 14:36:28 +03:00
mkDerivation rec {
pname = "goldendict";
version = "2022-05-10";
2017-06-02 18:40:19 +03:00
src = fetchFromGitHub {
owner = "goldendict";
2020-02-08 14:36:28 +03:00
repo = pname;
rev = "f810c6bd724e61977b4e94ca2d8abfa5bd766379";
sha256 = "sha256-gNM+iahoGQy8TlNFLQx5ksITzQznv7MWMX/88QCTnL0";
};
2015-09-23 20:06:29 +03:00
2020-02-08 14:36:28 +03:00
patches = [
./0001-dont-check-for-updates.patch
2021-01-15 08:42:41 +03:00
] ++ lib.optionals stdenv.isDarwin [
2020-02-08 14:36:28 +03:00
./0001-dont-use-maclibs.patch
];
postPatch = ''
substituteInPlace goldendict.pro \
--replace "hunspell-1.6.1" "hunspell-${lib.versions.majorMinor hunspell.version}" \
--replace "opencc.2" "opencc"
2020-02-08 14:36:28 +03:00
'';
nativeBuildInputs = [ pkg-config qmake ];
2016-04-17 02:32:05 +03:00
buildInputs = [
2020-02-08 14:36:28 +03:00
qtbase qtsvg qtwebkit qttools
libvorbis hunspell xz lzo
2021-01-15 08:42:41 +03:00
] ++ lib.optionals stdenv.isLinux [ qtx11extras libXtst ]
++ lib.optionals stdenv.isDarwin [ bzip2 libiconv ]
++ lib.optional withCC opencc
++ lib.optional withEpwing libeb
++ lib.optional withExtraTiff libtiff
++ lib.optionals withFFmpeg [ libao ffmpeg ]
2021-01-15 08:42:41 +03:00
++ lib.optional withZim zstd;
2016-04-17 02:32:05 +03:00
2021-01-15 08:42:41 +03:00
qmakeFlags = with lib; [
2019-08-03 01:04:12 +03:00
"goldendict.pro"
2020-02-08 14:36:28 +03:00
(optional withCC "CONFIG+=chinese_conversion_support")
(optional (!withCC) "CONFIG+=no_chinese_conversion_support")
(optional (!withEpwing) "CONFIG+=no_epwing_support")
(optional (!withExtraTiff) "CONFIG+=no_extra_tiff_handler")
(optional (!withFFmpeg) "CONFIG+=no_ffmpeg_player")
(optional (!withMultimedia)"CONFIG+=no_qtmultimedia_player")
(optional withZim "CONFIG+=zim_support")
2019-08-03 01:04:12 +03:00
];
2021-01-15 08:42:41 +03:00
postInstall = lib.optionalString stdenv.isDarwin ''
2020-02-08 14:36:28 +03:00
mkdir -p $out/Applications
mv GoldenDict.app $out/Applications
'';
meta = with lib; {
2020-02-08 14:36:28 +03:00
homepage = "http://goldendict.org/";
description = "A feature-rich dictionary lookup program";
2020-02-08 14:36:28 +03:00
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ gebner astsmtl sikmir ];
2018-09-01 14:53:01 +03:00
license = licenses.gpl3Plus;
};
}