lol

openal 1.7.411 -> 1.16.0

+5 -6
+5 -6
pkgs/development/libraries/openal/default.nix
··· 1 1 { stdenv, fetchurl, alsaLib, cmake }: 2 2 3 - let version = "1.7.411"; in 3 + let version = "1.16.0"; in 4 4 stdenv.mkDerivation rec { 5 5 name = "openal-${version}"; 6 6 7 7 src = fetchurl { 8 - url = "http://connect.creativelabs.com/openal/Downloads/openal-soft-${version}.bz2"; 9 - sha256 = "1nbqvg08hy5p2cxy2i2mmh2szmbpsg2dcvhr61iplyisw04rwc8i"; 10 - name = "openal-soft-${version}.tar.bz2"; 8 + url = "http://kcat.strangesoft.net/openal-releases/openal-soft-${version}.tar.bz2"; 9 + sha256 = "0pqdykdclycfnk66v166srjrry936y39d1dz9wl92qz27wqwsg9g"; 11 10 }; 12 11 13 12 buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib; ··· 30 29 is done from the perspective of the Listener. 31 30 ''; 32 31 33 - homepage = http://www.openal.org/; 34 - license = stdenv.lib.licenses.gpl2Plus; 32 + homepage = http://kcat.strangesoft.net/openal.html; 33 + license = stdenv.lib.licenses.lgpl2Plus; 35 34 }; 36 35 }