organicmaps: 2025.03.02-7 -> 2025.05.20-5

Diff: https://github.com/organicmaps/organicmaps/compare/refs/tags/2025.03.02-7-android...refs/tags/2025.05.20-5-android

authored by emaryn and committed by Francesco Gazzetta 98a8834d ab97a405

+10 -6
+10 -6
pkgs/applications/misc/organicmaps/default.nix
··· 19 19 icu, 20 20 freetype, 21 21 pugixml, 22 + xorg, 22 23 nix-update-script, 23 24 }: 24 25 ··· 32 33 in 33 34 stdenv.mkDerivation (finalAttrs: { 34 35 pname = "organicmaps"; 35 - version = "2025.03.02-7"; 36 + version = "2025.05.20-5"; 36 37 37 38 src = fetchFromGitHub { 38 39 owner = "organicmaps"; 39 40 repo = "organicmaps"; 40 41 tag = "${finalAttrs.version}-android"; 41 - hash = "sha256-5WX+YDgu8Ll5+rZWWxfbNW0pBFz+2XWkw/ahM14Ml08="; 42 + hash = "sha256-cqcFI5cXREOeHusPkXsMwdCopzpea50mZQ/+ogLlemk="; 42 43 fetchSubmodules = true; 43 44 }; 44 45 ··· 78 79 icu 79 80 freetype 80 81 pugixml 82 + xorg.libXrandr 83 + xorg.libXinerama 84 + xorg.libXcursor 81 85 ]; 82 86 83 87 # Yes, this is PRE configure. The configure phase uses cmake ··· 94 98 }; 95 99 }; 96 100 97 - meta = with lib; { 101 + meta = { 98 102 # darwin: "invalid application of 'sizeof' to a function type" 99 103 broken = stdenv.hostPlatform.isDarwin; 100 104 homepage = "https://organicmaps.app/"; 101 105 description = "Detailed Offline Maps for Travellers, Tourists, Hikers and Cyclists"; 102 - license = licenses.asl20; 103 - maintainers = with maintainers; [ fgaz ]; 104 - platforms = platforms.all; 106 + license = lib.licenses.asl20; 107 + maintainers = with lib.maintainers; [ fgaz ]; 108 + platforms = lib.platforms.all; 105 109 mainProgram = "OMaps"; 106 110 }; 107 111 })