glaxnimate: 0.5.1 -> 0.5.4 + fix #263731 (#264387)

authored by Tobias Bora and committed by GitHub 3ea085d8 46e98ccc

+7 -2
+7 -2
pkgs/applications/video/glaxnimate/default.nix
··· 37 37 in 38 38 stdenv.mkDerivation rec { 39 39 pname = "glaxnimate"; 40 - version = "0.5.1"; 40 + version = "0.5.4"; 41 41 42 42 src = fetchFromGitLab { 43 43 owner = "mattbas"; 44 44 repo = "${pname}"; 45 45 rev = version; 46 - sha256 = "G4ykcOvXXnVIQZUYpRIrALtDSsGqxMvDtcmobjjtlKw="; 46 + sha256 = "sha256-8oHJCQdP2xxSSDM0MDkSrG89WgCtMKm1AKlddnq3gig="; 47 47 fetchSubmodules = true; 48 48 }; 49 49 50 50 nativeBuildInputs = [ 51 51 cmake 52 52 wrapQtAppsHook 53 + qttools 53 54 ]; 54 55 55 56 buildInputs = [ ··· 64 65 qtimageformats 65 66 python3WithLibs 66 67 ]; 68 + 69 + # Translation needs to be separately compiled 70 + # https://gitlab.com/mattbas/glaxnimate/-/issues/648 71 + buildFlags = [ "translations" ]; 67 72 68 73 qtWrapperArgs = [ ''--prefix PATH : ${python3WithLibs}/bin'' ]; 69 74