992f5b8d26
This modifies how the `riak` and `riak-admin` scripts work such that one has to specify environment variables for where the data, log, and etc directories live.
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{ stdenv, fetchurl, unzip, erlang }:
|
|
|
|
let
|
|
srcs = {
|
|
riak = fetchurl {
|
|
url = "http://s3.amazonaws.com/downloads.basho.com/riak/1.3/1.3.1/riak-1.3.1.tar.gz";
|
|
sha256 = "a69093fc5df1b79f58645048b9571c755e00c3ca14dfd27f9f1cae2c6e628f01";
|
|
};
|
|
leveldb = fetchurl {
|
|
url = "https://github.com/basho/leveldb/zipball/1.3.1";
|
|
sha256 = "0d60b84e5ea05238ba79b08b4176fc66bf28768c8e6ffcea53092e28eaea091f";
|
|
};
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "riak-1.3.1";
|
|
|
|
buildInputs = [unzip erlang];
|
|
|
|
src = srcs.riak;
|
|
|
|
patches = [ ./riak-1.3.1.patch ./riak-admin-1.3.1.patch ];
|
|
|
|
postUnpack = ''
|
|
ln -sv ${srcs.leveldb} $sourceRoot/deps/eleveldb/c_src/leveldb.zip
|
|
pushd $sourceRoot/deps/eleveldb/c_src/
|
|
unzip leveldb.zip
|
|
mv basho-leveldb-* leveldb
|
|
cd ../../
|
|
mkdir riaknostic/deps
|
|
cp -R lager riaknostic/deps
|
|
cp -R getopt riaknostic/deps
|
|
cp -R meck riaknostic/deps
|
|
popd
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make rel
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
mv rel/riak/etc rel/riak/riak-etc
|
|
mkdir -p rel/riak/etc
|
|
mv rel/riak/riak-etc rel/riak/etc/riak
|
|
mv rel/riak/* $out
|
|
'';
|
|
|
|
meta = {
|
|
maintainers = stdenv.lib.maintainers.orbitz;
|
|
description = "Dynamo inspired NoSQL DB by Basho";
|
|
longDescription = ''
|
|
This reworks how the riak and riak-admin scripts work. Rather
|
|
than the scripts using their own location to determine where the
|
|
data, log, and etc directories should live, the scripts expect
|
|
RIAK_DATA_DIR, RIAK_LOG_DIR, and RIAK_ETC_DIR to be defined
|
|
and use those.
|
|
''
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|