summary refs log tree commit diff
path: root/pkgs/development/libraries/openal/default.nix
blob: 887a668b4e6b1010efac840da7cefa50aeb056e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, alsaLib, autoconf, automake, libtool}:

stdenv.mkDerivation {
  name = "openal-0.0.8";
  src = fetchurl {
    url = http://www.openal.org/openal_webstf/downloads/openal-0.0.8.tar.gz;
    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"];
}