about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb
diff options
context:
space:
mode:
authorGuillaume Maudoux <layus.on@gmail.com>2016-04-13 11:28:52 +0200
committerGuillaume Maudoux <layus.on@gmail.com>2016-04-13 11:28:52 +0200
commitbf2ceb05259c411fd4756528ef31b8ed53aae4db (patch)
treeaae461e03e304f71a8f6167b069f7c4619219bc2 /pkgs/servers/nosql/mongodb
parentc7b5cfc7d25eaf058e275f99cc9cb7bc66031dce (diff)
downloadnixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.tar
nixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.tar.gz
nixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.tar.bz2
nixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.tar.lz
nixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.tar.xz
nixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.tar.zst
nixlib-bf2ceb05259c411fd4756528ef31b8ed53aae4db.zip
mongodb: fix build (use pcre-cpp instead of pcre)
Diffstat (limited to 'pkgs/servers/nosql/mongodb')
-rw-r--r--pkgs/servers/nosql/mongodb/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix
index 289607328d62..643c7b567525 100644
--- a/pkgs/servers/nosql/mongodb/default.nix
+++ b/pkgs/servers/nosql/mongodb/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre, snappy
+{ stdenv, fetchurl, fetchpatch, scons, boost, gperftools, pcre-cpp, snappy
 , zlib, libyamlcpp, sasl, openssl, libpcap, wiredtiger
 }:
 
@@ -20,7 +20,7 @@ let version = "3.2.1";
       "yaml"
     ] ++ optionals stdenv.isLinux [ "tcmalloc" ];
     buildInputs = [
-      sasl boost gperftools pcre snappy
+      sasl boost gperftools pcre-cpp snappy
       zlib libyamlcpp sasl openssl libpcap
     ]; # ++ optional stdenv.is64bit wiredtiger;