1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

riak-cs: add Darwin support

This commit is contained in:
Matthew Daiter 2016-12-18 03:38:42 +01:00
parent 2fe1daf804
commit 1090a269ab
2 changed files with 7 additions and 4 deletions

View file

@ -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 {
name = "riak_cs-2.1.1";
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 {
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; {
description = "Dynamo inspired NoSQL DB by Basho with S3 compatibility";
platforms = [ "x86_64-linux" ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
license = licenses.asl20;
maintainer = with maintainers; [ mdaiter ];
};

View file

@ -10291,6 +10291,7 @@ in
riak = callPackage ../servers/nosql/riak/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;
};