hypseus-singe: 2.11.3 -> 2.11.4 (#401158)

authored by Toma and committed by GitHub 6f14a180 07c4db35

+10 -6
+6 -3
pkgs/by-name/hy/hypseus-singe/package.nix
··· 11 11 SDL2, 12 12 SDL2_image, 13 13 SDL2_ttf, 14 + SDL2_mixer, 14 15 libmpeg2, 15 16 libvorbis, 16 17 libzip, ··· 19 20 20 21 stdenv.mkDerivation (finalAttrs: { 21 22 pname = "hypseus-singe"; 22 - version = "2.11.3"; 23 + version = "2.11.4"; 23 24 24 25 src = fetchFromGitHub { 25 26 owner = "DirtBagXon"; 26 27 repo = "hypseus-singe"; 27 - rev = "refs/tags/v${finalAttrs.version}"; 28 - hash = "sha256-hLl+/tJrBXo6m/cJxmn2bSLXcNLM8B6SKrM702Z8K8E="; 28 + tag = "v${finalAttrs.version}"; 29 + hash = "sha256-04WC0fO/eNUz4muwDAbjDy5AA53QPpX5dq5Xgt8qeBI="; 29 30 }; 30 31 31 32 patches = [ ./use-shared-mpeg2.patch ]; ··· 44 45 SDL2 45 46 SDL2_image 46 47 SDL2_ttf 48 + SDL2_mixer 47 49 libmpeg2 48 50 libvorbis 49 51 libzip ··· 55 57 env.NIX_CFLAGS_COMPILE = toString [ 56 58 "-I${lib.getDev SDL2_image}/include/SDL2" 57 59 "-I${lib.getDev SDL2_ttf}/include/SDL2" 60 + "-I${lib.getDev SDL2_mixer}/include/SDL2" 58 61 ]; 59 62 60 63 preConfigure = ''
+4 -3
pkgs/by-name/hy/hypseus-singe/use-shared-mpeg2.patch
··· 1 1 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 - index 6a85063..73dbd39 100644 2 + index 780b802..2f0b489 100644 3 3 --- a/src/CMakeLists.txt 4 4 +++ b/src/CMakeLists.txt 5 - @@ -50,13 +50,12 @@ include(GetGitRevisionDescription) 5 + @@ -53,14 +53,13 @@ include(GetGitRevisionDescription) 6 6 include(InstallRequiredSystemLibraries) 7 7 include(FindPkgConfig) 8 8 include(ExternalProject) ··· 12 12 13 13 PKG_SEARCH_MODULE(SDL2 REQUIRED sdl2) 14 14 PKG_SEARCH_MODULE(SDL2_TTF REQUIRED SDL2_ttf) 15 + PKG_SEARCH_MODULE(SDL2_MIXER REQUIRED SDL2_mixer) 15 16 -build_libmpeg2( ) 16 17 +PKG_SEARCH_MODULE(MPEG2 REQUIRED libmpeg2) 17 18 18 19 message(STATUS "Target: ${CMAKE_SYSTEM_NAME} ${CMAKE_TARGET_ARCHITECTURES}") 19 20 20 - @@ -110,7 +109,6 @@ add_subdirectory(timer) 21 + @@ -114,7 +113,6 @@ add_subdirectory(timer) 21 22 add_subdirectory(video) 22 23 add_subdirectory(vldp) 23 24