2008-01-28 19:35:40 +00:00
|
|
|
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
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. :-)
|
|
|
|
|
|
|
|
name = "openal-soft-testing";
|
|
|
|
|
2008-01-28 19:35:40 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://kcat.strangesoft.net/OpenAL.tar.bz2;
|
2007-12-01 05:56:58 +00:00
|
|
|
sha256 = "7b53c3e6eda1a71010651eb058c71c9b0c86b3c15cae5f0ffeeb7222531aa97d";
|
|
|
|
};
|
|
|
|
|
2008-01-28 19:35:40 +00:00
|
|
|
buildInputs = [cmake alsaLib];
|
2007-12-01 05:56:58 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "openal alternative";
|
|
|
|
homepage = http://kcat.strangesoft.net/openal.html;
|
|
|
|
license = "GPL2";
|
|
|
|
};
|
|
|
|
}
|