From bf2ceb05259c411fd4756528ef31b8ed53aae4db Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Wed, 13 Apr 2016 11:28:52 +0200 Subject: [PATCH] mongodb: fix build (use pcre-cpp instead of pcre) --- pkgs/servers/nosql/mongodb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix index 289607328d6..643c7b56752 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;