summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_mixer/default.nix
blob: 14b8359c70a4455471bed56c6bb9d70e4d48348b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, SDL, libogg, libvorbis}:

stdenv.mkDerivation {
  name = "SDL_mixer-1.2.7";
  src = fetchurl {
    url = http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.7.tar.gz;
    md5 = "7959b89c8f8f1564ca90968f6c88fa1e";
  };
  buildInputs = [SDL libogg libvorbis];
  configureFlags = "--disable-music-ogg-shared";
}