about summary refs log tree commit diff
path: root/pkgs/servers/nosql
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-08-06 16:19:30 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-08-06 16:25:51 +0200
commit629ac021b77d2d09302081ae0d6d8c066b2b3dc4 (patch)
tree2baaa8c0b03b993da0428469793b1f1952d4c9b7 /pkgs/servers/nosql
parenta849b160522ff33d4f54764ce6d0aa39319b79d0 (diff)
downloadnixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.tar
nixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.tar.gz
nixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.tar.bz2
nixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.tar.lz
nixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.tar.xz
nixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.tar.zst
nixlib-629ac021b77d2d09302081ae0d6d8c066b2b3dc4.zip
Revert "rethinkdb: Force dynamic linking and allow dependency substitution"
This reverts commit 5960a652f1502260348ad7375ace20959b80abe4.

Build is broken since the beginning at configure phase @wkennington ,
I wonder how you were able to build this.

See http://hydra.nixos.org/build/24167778/nixlog/1/raw
Diffstat (limited to 'pkgs/servers/nosql')
-rw-r--r--pkgs/servers/nosql/rethinkdb/default.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/servers/nosql/rethinkdb/default.nix b/pkgs/servers/nosql/rethinkdb/default.nix
index 5d0b68bba2b8..789aa95b1577 100644
--- a/pkgs/servers/nosql/rethinkdb/default.nix
+++ b/pkgs/servers/nosql/rethinkdb/default.nix
@@ -11,21 +11,12 @@ stdenv.mkDerivation rec {
     sha256 = "19qhia4lfa8a0rzp2v6lnlxp2lf4z4vqhgfxnicfdnx07q4r847i";
   };
 
-  postPatch = ''
-    # Remove the dependence on bundled libraries
-    sed -i '/must_fetch_list/ s/ v8//' configure
-
-    # Don't use the default command line args
-    rm configure.default
-  '';
-
   preConfigure = ''
     export ALLOW_WARNINGS=1
     patchShebangs .
   '';
 
   configureFlags = [
-    "--dynamic=all"
     "--with-jemalloc"
     "--lib-path=${jemalloc}/lib"
   ];