From 6c37503f54bade83c7b23cb525ff460e166197be Mon Sep 17 00:00:00 2001 From: Eric Litak Date: Thu, 14 Apr 2016 13:41:42 -0700 Subject: [PATCH] mongodb: fix broken pcre dep --- pkgs/servers/nosql/mongodb/2.4.8.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/mongodb/2.4.8.nix b/pkgs/servers/nosql/mongodb/2.4.8.nix index 448d260bdb9..ccd64da3c6a 100644 --- a/pkgs/servers/nosql/mongodb/2.4.8.nix +++ b/pkgs/servers/nosql/mongodb/2.4.8.nix @@ -2,7 +2,7 @@ # by elitak for use with the Ubiquiti mFi Controller package, which breaks at # runtime on mongodb3+ and jre8+. We will need to pull in sufficiently old # versions of boost and v8 to build this, as well. -{ stdenv, fetchurl, scons, boost155, v8_3_14, gperftools, pcre, snappy }: +{ stdenv, fetchurl, scons, boost155, v8_3_14, gperftools, pcre-cpp, snappy }: with stdenv.lib; let version = "2.4.8"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { sha256 = "1p6gnharypglfp39halp72fig96fqjhakyy7m76a1prxwpjkqw7x"; }; - nativeBuildInputs = [ scons boost155 v8_3_14 gperftools pcre snappy ]; + nativeBuildInputs = [ scons boost155 v8_3_14 gperftools pcre-cpp snappy ]; postPatch = '' substituteInPlace SConstruct \