forked from mirrors/nixpkgs
riak-cs: add Darwin support
This commit is contained in:
parent
2fe1daf804
commit
1090a269ab
|
@ -1,11 +1,13 @@
|
||||||
{ stdenv, lib, fetchurl, unzip, erlang, git, wget, which, pam, coreutils, riak }:
|
{ stdenv, lib, fetchurl, unzip, erlang, git, wget, which, pam, coreutils, riak
|
||||||
|
, Carbon ? null, Cocoa ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "riak_cs-2.1.1";
|
name = "riak_cs-2.1.1";
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
which unzip erlang pam git wget
|
which unzip erlang git wget
|
||||||
];
|
] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ]
|
||||||
|
++ lib.optional stdenv.isLinux [ pam ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://s3.amazonaws.com/downloads.basho.com/riak-cs/2.1/2.1.1/riak-cs-2.1.1.tar.gz";
|
url = "http://s3.amazonaws.com/downloads.basho.com/riak-cs/2.1/2.1.1/riak-cs-2.1.1.tar.gz";
|
||||||
|
@ -60,7 +62,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Dynamo inspired NoSQL DB by Basho with S3 compatibility";
|
description = "Dynamo inspired NoSQL DB by Basho with S3 compatibility";
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainer = with maintainers; [ mdaiter ];
|
maintainer = with maintainers; [ mdaiter ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -10291,6 +10291,7 @@ in
|
||||||
riak = callPackage ../servers/nosql/riak/2.1.1.nix { };
|
riak = callPackage ../servers/nosql/riak/2.1.1.nix { };
|
||||||
|
|
||||||
riak-cs = callPackage ../servers/nosql/riak-cs/2.1.1.nix {
|
riak-cs = callPackage ../servers/nosql/riak-cs/2.1.1.nix {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||||
erlang = erlang_basho_R16B02;
|
erlang = erlang_basho_R16B02;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue