summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorEric Litak <elitak@gmail.com>2016-04-14 13:41:42 -0700
committerEric Litak <elitak@gmail.com>2016-04-14 13:41:42 -0700
commit6c37503f54bade83c7b23cb525ff460e166197be (patch)
tree038a952e2c4765e4a648e24320bcbad1e671032c /pkgs/servers
parent358900674b9ecf85ef4add5fa36aa0eb94f76c36 (diff)
downloadnixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.tar
nixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.tar.gz
nixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.tar.bz2
nixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.tar.lz
nixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.tar.xz
nixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.tar.zst
nixpkgs-6c37503f54bade83c7b23cb525ff460e166197be.zip
mongodb: fix broken pcre dep
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/nosql/mongodb/2.4.8.nix4
1 files 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 \