Merge pull request #7924 from DamienCassou/update-openal-1.16.0
openal 1.7.411 -> 1.16.0
This commit is contained in:
commit
623f5f78da
1 changed files with 5 additions and 6 deletions
|
@ -1,13 +1,12 @@
|
||||||
{ stdenv, fetchurl, alsaLib, cmake }:
|
{ stdenv, fetchurl, alsaLib, cmake }:
|
||||||
|
|
||||||
let version = "1.7.411"; in
|
let version = "1.16.0"; in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "openal-${version}";
|
name = "openal-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://connect.creativelabs.com/openal/Downloads/openal-soft-${version}.bz2";
|
url = "http://kcat.strangesoft.net/openal-releases/openal-soft-${version}.tar.bz2";
|
||||||
sha256 = "1nbqvg08hy5p2cxy2i2mmh2szmbpsg2dcvhr61iplyisw04rwc8i";
|
sha256 = "0pqdykdclycfnk66v166srjrry936y39d1dz9wl92qz27wqwsg9g";
|
||||||
name = "openal-soft-${version}.tar.bz2";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
||||||
|
@ -30,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
is done from the perspective of the Listener.
|
is done from the perspective of the Listener.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
homepage = http://www.openal.org/;
|
homepage = http://kcat.strangesoft.net/openal.html;
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.lgpl2Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue