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

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

72 lines
2.2 KiB
Nix
Raw Normal View History

2023-06-27 07:10:57 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config
2020-02-08 11:36:28 +00:00
, libXtst, libvorbis, hunspell, lzo, xz, bzip2, libiconv
, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake
2023-06-27 07:10:57 +00:00
, wrapQtAppsHook
, wrapGAppsHook
2020-02-08 11:36:28 +00:00
, withCC ? true, opencc
, withEpwing ? true, libeb
, withExtraTiff ? true, libtiff
, withFFmpeg ? true, libao, ffmpeg
2020-02-08 11:36:28 +00:00
, withMultimedia ? true
2020-06-04 09:19:04 +00:00
, withZim ? true, zstd }:
2020-02-08 11:36:28 +00:00
2023-06-27 07:10:57 +00:00
stdenv.mkDerivation rec {
2020-02-08 11:36:28 +00:00
pname = "goldendict";
2023-06-27 07:10:57 +00:00
version = "1.5.0";
2017-06-02 15:40:19 +00:00
src = fetchFromGitHub {
owner = "goldendict";
2020-02-08 11:36:28 +00:00
repo = pname;
rev = version;
2023-06-27 07:10:57 +00:00
hash = "sha256-80o8y+mbzpyMQYUGHYs/zgQT23nLVCs7Jcr8FbbXn8M=";
};
2015-09-23 17:06:29 +00:00
2020-02-08 11:36:28 +00:00
patches = [
./0001-dont-check-for-updates.patch
./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 11:36:28 +00:00
'';
nativeBuildInputs = [ pkg-config qmake wrapQtAppsHook wrapGAppsHook ];
2016-04-16 23:32:05 +00:00
buildInputs = [
2020-02-08 11:36:28 +00:00
qtbase qtsvg qtwebkit qttools
libvorbis hunspell xz lzo
2021-01-15 05:42:41 +00: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 05:42:41 +00:00
++ lib.optional withZim zstd;
2016-04-16 23:32:05 +00:00
2021-01-15 05:42:41 +00:00
qmakeFlags = with lib; [
2019-08-02 22:04:12 +00:00
"goldendict.pro"
2020-02-08 11:36:28 +00: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-02 22:04:12 +00:00
];
2021-01-15 05:42:41 +00:00
postInstall = lib.optionalString stdenv.isDarwin ''
2020-02-08 11:36:28 +00:00
mkdir -p $out/Applications
mv GoldenDict.app $out/Applications
'';
meta = with lib; {
2020-02-08 11:36:28 +00:00
homepage = "http://goldendict.org/";
description = "A feature-rich dictionary lookup program";
2020-02-08 11:36:28 +00:00
platforms = with platforms; linux ++ darwin;
mainProgram = "goldendict";
2020-02-08 11:36:28 +00:00
maintainers = with maintainers; [ gebner astsmtl sikmir ];
2018-09-01 11:53:01 +00:00
license = licenses.gpl3Plus;
};
}