2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl, cmake, alsaLib }:
|
|
|
|
|
2013-04-01 16:52:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2007-12-01 05:56:58 +00:00
|
|
|
#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. :-)
|
|
|
|
|
2013-04-01 16:52:57 +01:00
|
|
|
version = "1.15.1";
|
|
|
|
name = "openal-soft-${version}";
|
2007-12-01 05:56:58 +00:00
|
|
|
|
2008-01-28 19:35:40 +00:00
|
|
|
src = fetchurl {
|
2013-04-01 16:52:57 +01:00
|
|
|
url = "http://kcat.strangesoft.net/openal-releases/${name}.tar.bz2";
|
|
|
|
sha256 = "0mmhdqiyb3c9dzvxspm8h2v8jibhi8pfjxnf6m0wn744y1ia2a8f";
|
2007-12-01 05:56:58 +00:00
|
|
|
};
|
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
buildInputs = [ cmake alsaLib ];
|
2007-12-01 05:56:58 +00:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "OpenAL alternative";
|
|
|
|
homepage = http://kcat.strangesoft.net/openal.html;
|
|
|
|
license = "GPL2";
|
2007-12-01 05:56:58 +00:00
|
|
|
};
|
|
|
|
}
|