openal-soft: remove cross-compilation workaround

The original issue does not re-occur without this option.

+7 -12
+7 -12
pkgs/by-name/op/openalSoft/package.nix
··· 42 42 ++ lib.optional pipewireSupport pipewire 43 43 ++ lib.optional pulseSupport libpulseaudio; 44 44 45 - cmakeFlags = 46 - [ 47 - # Automatically links dependencies without having to rely on dlopen, thus 48 - # removes the need for NIX_LDFLAGS. 49 - (lib.cmakeBool "ALSOFT_DLOPEN" false) 50 - # allow oal-soft to find its own data files (e.g. HRTF profiles) 51 - (lib.cmakeBool "ALSOFT_SEARCH_INSTALL_DATADIR" true) 52 - ] 53 - ++ lib.optionals stdenv.hostPlatform.isLinux [ 54 - # https://github.com/NixOS/nixpkgs/issues/183774 55 - (lib.cmakeBool "ALSOFT_BACKEND_OSS" false) 56 - ]; 45 + cmakeFlags = [ 46 + # Automatically links dependencies without having to rely on dlopen, thus 47 + # removes the need for NIX_LDFLAGS. 48 + (lib.cmakeBool "ALSOFT_DLOPEN" false) 49 + # allow oal-soft to find its own data files (e.g. HRTF profiles) 50 + (lib.cmakeBool "ALSOFT_SEARCH_INSTALL_DATADIR" true) 51 + ]; 57 52 58 53 passthru = { 59 54 tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;