nixpkgs/pkgs/development/libraries/openal-soft/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

23 lines
615 B
Nix

{ stdenv, fetchurl, cmake, alsaLib }:
stdenv.mkDerivation {
#The current release is still in a testing phase, though it should be stable
# (neither the ABI or API will break). Please try it out and let me know how it
# works. :-)
name = "openal-soft-1.1.93";
src = fetchurl {
url = http://kcat.strangesoft.net/openal-releases/openal-soft-1.1.93.tar.bz2;
sha256 = "162nyv4jy6qzi7s5q3wpdawfph6npyn1n4wjf21haxdxq0mmp6l7";
};
buildInputs = [ cmake alsaLib ];
meta = {
description = "OpenAL alternative";
homepage = http://kcat.strangesoft.net/openal.html;
license = "GPL2";
};
}