summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-03-03 02:31:52 +0100
committerajs124 <git@ajs124.de>2021-05-03 15:41:42 +0200
commitb8caf0847ce03c042c597fa22c8e3b88e4b43ac6 (patch)
tree959f02f40079e24d8d98503ec9deb080cfcfb9f9 /pkgs/servers/http
parentd0dc38c19ff3e23c9fbad48939dbd1ba18267924 (diff)
downloadnixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.tar
nixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.tar.gz
nixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.tar.bz2
nixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.tar.lz
nixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.tar.xz
nixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.tar.zst
nixpkgs-b8caf0847ce03c042c597fa22c8e3b88e4b43ac6.zip
couchdb: drop
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/couchdb/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/servers/http/couchdb/default.nix b/pkgs/servers/http/couchdb/default.nix
deleted file mode 100644
index 45023e800af..00000000000
--- a/pkgs/servers/http/couchdb/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib, stdenv, fetchurl, erlang, icu, openssl, spidermonkey_1_8_5, curl, help2man
-, sphinx, which, file, pkg-config, getopt }:
-
-stdenv.mkDerivation rec {
-  pname = "couchdb";
-  version = "1.7.1";
-
-  src = fetchurl {
-    url = "mirror://apache/couchdb/source/${version}/apache-${pname}-${version}.tar.gz";
-    sha256 = "1b9cbdrmh1i71mrwvhm17v4cf7lckpil1vvq7lpmxyn6zfk0l84i";
-  };
-
-  nativeBuildInputs = [ help2man which file pkg-config sphinx ];
-  buildInputs = [ erlang icu openssl spidermonkey_1_8_5 curl ];
-
-  postInstall = ''
-    substituteInPlace $out/bin/couchdb --replace getopt "${getopt}/bin/getopt"
-  '';
-
-  /*
-  Versions of SpiderMonkey after the js185-1.0.0 release remove the optional
-  enforcement of preventing anonymous functions in a statement context. This
-  will most likely break your existing JavaScript code as well as render all
-  example code invalid.
-
-  If you wish to ignore this error pass --enable-js-trunk to ./configure.
-  */
-  configureFlags = [
-    "--enable-js-trunk"
-  ];
-
-  meta = with lib; {
-    description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
-    homepage = "http://couchdb.apache.org";
-    license = licenses.asl20;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ ];
-  };
-}