about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-09-07 10:02:59 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-09-07 10:06:00 +0100
commit382afe8c62221851486cbfb0f2f3e596a3883367 (patch)
treeb9b740cd96ef7b16f11d06742d47b8c16e4867bf /pkgs/servers
parent7dad10d2ef2709e4316f7529b09f2c834685188a (diff)
downloadnixlib-382afe8c62221851486cbfb0f2f3e596a3883367.tar
nixlib-382afe8c62221851486cbfb0f2f3e596a3883367.tar.gz
nixlib-382afe8c62221851486cbfb0f2f3e596a3883367.tar.bz2
nixlib-382afe8c62221851486cbfb0f2f3e596a3883367.tar.lz
nixlib-382afe8c62221851486cbfb0f2f3e596a3883367.tar.xz
nixlib-382afe8c62221851486cbfb0f2f3e596a3883367.tar.zst
nixlib-382afe8c62221851486cbfb0f2f3e596a3883367.zip
mongodb248: remove
reason: build fails in hydra
Do still need this and want to maintain this @elitak?
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/nosql/mongodb/2.4.8.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/servers/nosql/mongodb/2.4.8.nix b/pkgs/servers/nosql/mongodb/2.4.8.nix
deleted file mode 100644
index ccd64da3c6a8..000000000000
--- a/pkgs/servers/nosql/mongodb/2.4.8.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-# This derivation was resurrected from 4c8ec5e12e187347fd97b1a1a9a43eb19e009ed0
-# 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-cpp, snappy }:
-with stdenv.lib;
-let
-  version = "2.4.8";
-in
-stdenv.mkDerivation rec {
-  name = "mongodb-${version}";
-
-  src = fetchurl {
-    url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz";
-    sha256 = "1p6gnharypglfp39halp72fig96fqjhakyy7m76a1prxwpjkqw7x";
-  };
-
-  nativeBuildInputs = [ scons boost155 v8_3_14 gperftools pcre-cpp snappy ];
-
-  postPatch = ''
-    substituteInPlace SConstruct \
-        --replace "Environment( BUILD_DIR" "Environment( ENV = os.environ, BUILD_DIR" \
-        --replace 'CCFLAGS=["-Werror", "-pipe"]' 'CCFLAGS=["-pipe"]'
-  '';
-
-  NIX_CFLAGS_COMPILE = "-Wno-unused-local-typedefs";
-
-  buildPhase = ''
-    export SCONSFLAGS="-j$NIX_BUILD_CORES"
-    scons all --use-system-all
-  '';
-
-  installPhase = ''
-    mkdir -p $out/lib
-    scons install --use-system-all --full --prefix=$out
-  '';
-
-  meta = {
-    description = "A scalable, high-performance, open source NoSQL database";
-    homepage = http://www.mongodb.org;
-    license = licenses.agpl3;
-    maintainers = with maintainers; [ bluescreen303 elitak ];
-    platforms = platforms.linux;
-  };
-}