Merge pull request #173779 from sikmir/goldendict

goldendict: 2021-03-09 → 2022-05-10, fix build on darwin

authored by

Gabriel Ebner and committed by
GitHub
dfd82985 f0d68829

+5 -4
+5 -4
pkgs/applications/misc/goldendict/default.nix
··· 10 10 11 11 mkDerivation rec { 12 12 pname = "goldendict"; 13 - version = "2021-03-09"; 13 + version = "2022-05-10"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "goldendict"; 17 17 repo = pname; 18 - rev = "b2e673961d28ca5eb920a909091252d3321f09d6"; 19 - sha256 = "sha256-+AAamnICq0/B54ggFpgF/Uupm1a4YiEYgHXrhIK4M0E="; 18 + rev = "f810c6bd724e61977b4e94ca2d8abfa5bd766379"; 19 + sha256 = "sha256-gNM+iahoGQy8TlNFLQx5ksITzQznv7MWMX/88QCTnL0"; 20 20 }; 21 21 22 22 patches = [ ··· 27 27 28 28 postPatch = '' 29 29 substituteInPlace goldendict.pro \ 30 - --replace "hunspell-1.6.1" "hunspell-${lib.versions.majorMinor hunspell.version}" 30 + --replace "hunspell-1.6.1" "hunspell-${lib.versions.majorMinor hunspell.version}" \ 31 + --replace "opencc.2" "opencc" 31 32 ''; 32 33 33 34 nativeBuildInputs = [ pkg-config qmake ];