mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
85cccb63e6
Without the change client programs like `fheroes2` fail to load `MIDI`
files:
$ nix run -f '<nixpkgs>' fheroes2
$ 14.03.2023 22:22:21: [ERROR] createMusic: Failed to create a music track from memory. The error: Couldn't open timidity.cfg
After the change music plays as expected. It's a forward-port of the
same fix that `SDL2_mixer` had in f11d1d9
("SDl2_mixer: fix MIDI
playback by adding timidity paths")
75 lines
1.5 KiB
Nix
75 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, AudioToolbox
|
|
, AudioUnit
|
|
, CoreServices
|
|
, SDL2
|
|
, flac
|
|
, fluidsynth
|
|
, libmodplug
|
|
, libogg
|
|
, libvorbis
|
|
, mpg123
|
|
, opusfile
|
|
, smpeg2
|
|
, timidity
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "SDL2_mixer";
|
|
version = "2.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.libsdl.org/projects/SDL_mixer/release/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-emuoakeGSM5hfjpekncYG8Z/fOmHZgXupq/9Sg1u6o8=";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--disable-music-ogg-shared"
|
|
"--disable-music-flac-shared"
|
|
"--disable-music-mod-modplug-shared"
|
|
"--disable-music-mp3-mpg123-shared"
|
|
"--disable-music-opus-shared"
|
|
"--disable-music-midi-fluidsynth-shared"
|
|
|
|
# override default path to allow MIDI files to be played
|
|
"--with-timidity-cfg=${timidity}/share/timidity/timidity.cfg"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"--disable-sdltest"
|
|
"--disable-smpegtest"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
AudioToolbox
|
|
AudioUnit
|
|
CoreServices
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
SDL2
|
|
flac
|
|
fluidsynth
|
|
libmodplug
|
|
libogg
|
|
libvorbis
|
|
mpg123
|
|
opusfile
|
|
smpeg2
|
|
# MIDI patterns
|
|
timidity
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
meta = with lib; {
|
|
description = "SDL multi-channel audio mixer library";
|
|
platforms = platforms.unix;
|
|
homepage = "https://github.com/libsdl-org/SDL_mixer";
|
|
maintainers = with maintainers; [ MP2E ];
|
|
license = licenses.zlib;
|
|
};
|
|
}
|