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