summary refs log tree commit diff
path: root/pkgs/development/libraries/openalSoft
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2007-12-01 05:56:58 +0000
committerMarc Weber <marco-oweber@gmx.de>2007-12-01 05:56:58 +0000
commitc19cfa42963cfa56e678d0f8e5350e3cc1fd6234 (patch)
tree2b1e2fbc681cbb68de510c0c704af77290ee2667 /pkgs/development/libraries/openalSoft
parent00f7de1597e85957cbae5e13bd7f68981ed96ea9 (diff)
downloadnixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.tar
nixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.tar.gz
nixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.tar.bz2
nixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.tar.lz
nixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.tar.xz
nixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.tar.zst
nixlib-c19cfa42963cfa56e678d0f8e5350e3cc1fd6234.zip
source fixed of ilmbase and openexr, blender, openal-soft added (can't compile openal yet on x64)
svn path=/nixpkgs/trunk/; revision=9811
Diffstat (limited to 'pkgs/development/libraries/openalSoft')
-rw-r--r--pkgs/development/libraries/openalSoft/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/openalSoft/default.nix b/pkgs/development/libraries/openalSoft/default.nix
new file mode 100644
index 000000000000..dae9e90522cb
--- /dev/null
+++ b/pkgs/development/libraries/openalSoft/default.nix
@@ -0,0 +1,24 @@
+args:
+args.stdenv.mkDerivation {
+#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";
+
+  src = args.fetchurl {
+    url = http://kcat.strangesoft.net/OpenAL.tar.bz2?2;
+    sha256 = "7b53c3e6eda1a71010651eb058c71c9b0c86b3c15cae5f0ffeeb7222531aa97d";
+  };
+
+  buildInputs =(with args; [cmake alsaLib]);
+  #phases = "buildPhase installPhase";
+
+  buildPhase = "ensureDir \$out; cmake -DCMAKE_INSTALL_PREFIX:PATH=\$out .; make; make install;";
+  
+  meta = {
+      description = "openal alternative";
+      homepage = http://kcat.strangesoft.net/openal.html;
+      license = "GPL2";
+  };
+}