Merge pull request #192228 from yu-re-ka/musl-game-music-emu

pkgsMusl.game-music-emu: fix build
This commit is contained in:
superherointj 2022-09-21 10:26:16 -03:00 committed by GitHub
commit 29296ae861
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
url = "https://bitbucket.org/mpyne/game-music-emu/downloads/${pname}-${version}.tar.xz";
sha256 = "07857vdkak306d9s5g6fhmjyxk7vijzjhkmqb15s7ihfxx9lx8xb";
};
cmakeFlags = lib.optionals stdenv.isDarwin [ "-DENABLE_UBSAN=OFF" ];
cmakeFlags = lib.optionals (stdenv.isDarwin || stdenv.hostPlatform.isMusl) [ "-DENABLE_UBSAN=OFF" ];
nativeBuildInputs = [ cmake removeReferencesTo ];
# It used to reference it, in the past, but thanks to the postFixup hook, now

View File

@ -18362,6 +18362,8 @@ with pkgs;
gamenetworkingsockets = callPackage ../development/libraries/gamenetworkingsockets { };
game-music-emu = callPackage ../development/libraries/audio/game-music-emu { };
gamin = callPackage ../development/libraries/gamin { };
fam = gamin; # added 2018-04-25
@ -28152,8 +28154,6 @@ with pkgs;
g933-utils = callPackage ../tools/misc/g933-utils { };
game-music-emu = callPackage ../applications/audio/game-music-emu { };
gavrasm = callPackage ../development/compilers/gavrasm { };
gcalcli = callPackage ../applications/misc/gcalcli { };