about summary refs log tree commit diff
path: root/pkgs/development/libraries/openal
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-11 07:16:16 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-11 07:16:16 +0000
commitf5c5c0b4b66e7449fc015b35b3d96261b24fafce (patch)
treea0f25c782e2b1fb01cbaf58d45d51d9b66c163a4 /pkgs/development/libraries/openal
parentf3c23487a2c8a09b7f77bf32e2c1ef7a7276414b (diff)
downloadnixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.tar
nixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.tar.gz
nixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.tar.bz2
nixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.tar.lz
nixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.tar.xz
nixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.tar.zst
nixlib-f5c5c0b4b66e7449fc015b35b3d96261b24fafce.zip
Updating vtk; simplifying the openal cmake build expression.
svn path=/nixpkgs/trunk/; revision=18888
Diffstat (limited to 'pkgs/development/libraries/openal')
-rw-r--r--pkgs/development/libraries/openal/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/libraries/openal/default.nix b/pkgs/development/libraries/openal/default.nix
index 40d9584742cc..2c23e51c22a6 100644
--- a/pkgs/development/libraries/openal/default.nix
+++ b/pkgs/development/libraries/openal/default.nix
@@ -12,24 +12,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ cmake alsaLib ];
 
-  cmakeFlags = "-DCMAKE_SHARED_LINKER_FLAGS=\"-Wl,-rpath,$out/lib/\"" +
-    " -DCMAKE_EXE_LINKER_FLAGS=\"-Wl,-rpath,$out/lib\"" +
-    " -DCMAKE_SKIP_BUILD_RPATH=ON" +
-    " -DCMAKE_BUILD_TYPE=Release" +
-    " -DCMAKE_INSTALL_PREFIX=$out";
-
-  dontUseCmakeConfigure = true;
-
-  # I rewrote the configure phase to get the $out references evaluated in
-  # cmakeFlags
-  configurePhase = ''
-    set -x
-    mkdir -p build;
-    cd build
-    eval -- "cmake .. $cmakeFlags"
-    set +x
-    '';
-
   meta = {
     description = "OpenAL, a cross-platform 3D audio API";