3
0
Fork 0
forked from mirrors/nixpkgs

openal-soft: update to 1.15.1

This commit is contained in:
Carles Pagès 2013-04-01 17:52:57 +02:00
parent 1aef67362f
commit 9a175a002d

View file

@ -1,15 +1,16 @@
{ stdenv, fetchurl, cmake, alsaLib }: { stdenv, fetchurl, cmake, alsaLib }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
#The current release is still in a testing phase, though it should be stable #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 # (neither the ABI or API will break). Please try it out and let me know how it
# works. :-) # works. :-)
name = "openal-soft-1.1.93"; version = "1.15.1";
name = "openal-soft-${version}";
src = fetchurl { src = fetchurl {
url = http://kcat.strangesoft.net/openal-releases/openal-soft-1.1.93.tar.bz2; url = "http://kcat.strangesoft.net/openal-releases/${name}.tar.bz2";
sha256 = "162nyv4jy6qzi7s5q3wpdawfph6npyn1n4wjf21haxdxq0mmp6l7"; sha256 = "0mmhdqiyb3c9dzvxspm8h2v8jibhi8pfjxnf6m0wn744y1ia2a8f";
}; };
buildInputs = [ cmake alsaLib ]; buildInputs = [ cmake alsaLib ];