mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
841d3a5da3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/couchdb/versions.
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ stdenv, fetchurl, erlang, icu, openssl, spidermonkey
|
|
, coreutils, bash, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "couchdb-${version}";
|
|
version = "2.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/couchdb/source/${version}/apache-${name}.tar.gz";
|
|
sha256 = "11brqv302j999sd5x8amhj9iqns9cbrlkjg2l9a8xbvkmf5fng0f";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ erlang icu openssl spidermonkey ];
|
|
|
|
patches = [ ./jsapi.patch ];
|
|
postPatch = ''
|
|
substituteInPlace src/couch/rebar.config.script --replace '-DHAVE_CURL -I/usr/local/include' "-DHAVE_CURL -I/usr/local/include $NIX_CFLAGS_COMPILE"
|
|
|
|
patch bin/rebar <<EOF
|
|
1c1
|
|
< #!/usr/bin/env escript
|
|
---
|
|
> #!${coreutils}/bin/env escript
|
|
EOF
|
|
|
|
'';
|
|
|
|
# Configure a username. The build system would use "couchdb" as
|
|
# default if none is provided. Note that it is unclear where this
|
|
# username is actually used in the build, as any choice seems to be
|
|
# working.
|
|
configurePhase = ''
|
|
./configure -u nobody
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make release
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r rel/couchdb/* $out
|
|
wrapProgram $out/bin/couchdb --suffix PATH : ${bash}/bin
|
|
'';
|
|
|
|
meta = with stdenv.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; [ garbas ];
|
|
};
|
|
}
|