nixpkgs/pkgs/servers/http/couchdb/3.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
Nix
Raw Normal View History

2022-04-26 09:02:36 +00:00
{ lib, stdenv, fetchurl, erlang, icu, openssl, spidermonkey_91
2021-11-06 19:42:53 +00:00
, coreutils, bash, makeWrapper, python3, nixosTests }:
2020-04-04 09:20:03 +00:00
stdenv.mkDerivation rec {
pname = "couchdb";
2022-04-26 09:02:36 +00:00
version = "3.2.2";
2020-04-04 09:20:03 +00:00
# when updating this, please consider bumping the erlang/OTP version
# in all-packages.nix
src = fetchurl {
url = "mirror://apache/couchdb/source/${version}/apache-${pname}-${version}.tar.gz";
2022-04-26 09:02:36 +00:00
sha256 = "sha256-acn9b4ATNVf2igLpLdpypP1kbWRvQp9Fu4Mpow+C8g4=";
2020-04-04 09:20:03 +00:00
};
2022-04-26 09:02:36 +00:00
buildInputs = [ erlang icu openssl spidermonkey_91 (python3.withPackages(ps: with ps; [ requests ]))];
2020-04-04 09:20:03 +00:00
postPatch = ''
2022-04-26 09:02:36 +00:00
substituteInPlace src/couch/rebar.config.script --replace '/usr/include/mozjs-91' "${spidermonkey_91.dev}/include/mozjs-91"
2020-04-04 09:20:03 +00:00
patchShebangs bin/rebar
'';
dontAddPrefix= "True";
2022-04-26 09:02:36 +00:00
configureFlags = ["--spidermonkey-version=91"];
2020-04-04 09:20:03 +00:00
buildFlags = ["release"];
installPhase = ''
mkdir -p $out
cp -r rel/couchdb/* $out
'';
2021-11-06 19:42:53 +00:00
passthru.tests = {
inherit (nixosTests) couchdb;
};
meta = with lib; {
2020-04-04 09:20:03 +00:00
description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
homepage = "https://couchdb.apache.org";
2020-04-04 09:20:03 +00:00
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ lostnet ];
};
}