summary refs log tree commit diff
path: root/pkgs/development/libraries/xapian
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-03-31 13:32:27 -0500
committerGraham Christensen <graham@grahamc.com>2016-04-04 07:42:38 -0500
commit2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd (patch)
tree3191540da18a2ddcf1486344b1d4f570ff1e48dc /pkgs/development/libraries/xapian
parent2c0310d8d8e84967418aa4224f00664966161608 (diff)
downloadnixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.tar
nixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.tar.gz
nixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.tar.bz2
nixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.tar.lz
nixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.tar.xz
nixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.tar.zst
nixpkgs-2b462dc2ef2be506c53b86fdfd3c3cb9b0e235cd.zip
xapian-bindings: build against php56
xapian-bindings does not support php7, as SWIG doesn't support PHP 7.0
yet, according to https://xapian.org/docs/bindings/php/
Diffstat (limited to 'pkgs/development/libraries/xapian')
-rw-r--r--pkgs/development/libraries/xapian/bindings/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/xapian/bindings/default.nix b/pkgs/development/libraries/xapian/bindings/default.nix
index 740b71c59a7..7abf5a1a063 100644
--- a/pkgs/development/libraries/xapian/bindings/default.nix
+++ b/pkgs/development/libraries/xapian/bindings/default.nix
@@ -24,8 +24,8 @@ composableDerivation.composableDerivation {} rec {
             preConfigure = ''
               export PYTHON_LIB=$out/lib/${python.libPrefix}/site-packages
               mkdir -p $out/nix-support
-              echo "export NIX_PYTHON_SITES=\"$out:\$NIX_PYTHON_SITES\"" >> $out/nix-support/setup-hook 
-              echo "export PYTHONPATH=\"$PYTHON_LIB:\$PYTHONPATH\"" >> $out/nix-support/setup-hook 
+              echo "export NIX_PYTHON_SITES=\"$out:\$NIX_PYTHON_SITES\"" >> $out/nix-support/setup-hook
+              echo "export PYTHONPATH=\"$PYTHON_LIB:\$PYTHONPATH\"" >> $out/nix-support/setup-hook
             '';
            };
          }
@@ -46,8 +46,8 @@ composableDerivation.composableDerivation {} rec {
                export RUBY_LIB=$out/${ruby.libPath}
                export RUBY_LIB_ARCH=$RUBY_LIB
                mkdir -p $out/nix-support
-               echo "export RUBYLIB=\"$RUBY_LIB:\$RUBYLIB\"" >> $out/nix-support/setup-hook 
-               echo "export GEM_PATH=\"$out:\$GEM_PATH\"" >> $out/nix-support/setup-hook 
+               echo "export RUBYLIB=\"$RUBY_LIB:\$RUBYLIB\"" >> $out/nix-support/setup-hook
+               echo "export GEM_PATH=\"$out:\$GEM_PATH\"" >> $out/nix-support/setup-hook
              '';
            };
          }
@@ -64,7 +64,7 @@ composableDerivation.composableDerivation {} rec {
     rubySupport = true;
   };
 
-  meta = { 
+  meta = {
     description = "Bindings for the Xapian library";
     homepage = xapian.meta.homepage;
     license = stdenv.lib.licenses.gpl2Plus;