nixpkgs/pkgs/development/libraries/openal/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

16 lines
503 B
Nix

{stdenv, fetchurl, alsaLib, autoconf, automake, libtool}:
stdenv.mkDerivation {
name = "openal-0.0.8";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/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"];
}