summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_mixer/default.nix
blob: f60d188886b39440a957f436b6c5f4fe057d5d29 (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://nix.cs.uu.nl/dist/tarballs/SDL_mixer-1.2.7.tar.gz;
    md5 = "7959b89c8f8f1564ca90968f6c88fa1e";
  };
  buildInputs = [SDL libogg libvorbis];
  configureFlags = "--disable-music-ogg-shared";
}