2006-01-26 15:01:08 +01:00
|
|
|
{stdenv, fetchurl, alsaLib, autoconf, automake, libtool}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "openal-0.0.8";
|
|
|
|
src = fetchurl {
|
2007-08-24 14:32:36 +02:00
|
|
|
url = http://www.openal.org/openal_webstf/downloads/openal-0.0.8.tar.gz;
|
2006-01-26 15:01:08 +01:00
|
|
|
md5 = "0379bd39fc84454491ef38434a2e6e8d";
|
|
|
|
};
|
|
|
|
# Note: the autoconf/automake dependency can go once the Automake
|
|
|
|
# patch is unnecessary.
|
|
|
|
builder = ./builder.sh;
|
|
|
|
patches = [./makefile.patch];
|
|
|
|
buildInputs = [alsaLib autoconf automake libtool];
|
|
|
|
configureFlags = ["--disable-arts" "--enable-alsa"];
|
|
|
|
}
|