1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

Merge pull request #21210 from mdaiter/stanchionMac

stanchion: add Darwin support
This commit is contained in:
Daiderd Jordan 2016-12-18 01:04:19 +01:00 committed by GitHub
commit 05b305aa4b
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 = "stanchion-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/stanchion/2.1/2.1.1/stanchion-2.1.1.tar.gz";
@ -57,7 +59,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
maintainers = with maintainers; [ mdaiter ];
description = "Manager for Riak CS";
platforms = [ "x86_64-linux" ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
license = licenses.asl20;
};
}

View file

@ -10295,6 +10295,7 @@ in
};
stanchion = callPackage ../servers/nosql/riak-cs/stanchion.nix {
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
erlang = erlang_basho_R16B02;
};