yggdrasil: fix build on darwin

This commit is contained in:
Mario Rodas 2020-03-21 06:09:00 -05:00
parent 2d271bdd4c
commit 28a71c8f59
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }: { stdenv, buildGoModule, fetchFromGitHub, Foundation }:
buildGoModule rec { buildGoModule rec {
pname = "yggdrasil"; pname = "yggdrasil";
@ -13,6 +13,8 @@ buildGoModule rec {
modSha256 = "057yl3i29kwpd129aa2rb67s5rmz898fi2a7lxv3nfjp7018s9qw"; modSha256 = "057yl3i29kwpd129aa2rb67s5rmz898fi2a7lxv3nfjp7018s9qw";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Foundation ];
# Change the default location of the management socket on Linux # Change the default location of the management socket on Linux
# systems so that the yggdrasil system service unit does not have to # systems so that the yggdrasil system service unit does not have to
# be granted write permission to /run. # be granted write permission to /run.
@ -27,7 +29,7 @@ buildGoModule rec {
-s -w -s -w
''; '';
meta = with lib; { meta = with stdenv.lib; {
description = description =
"An experiment in scalable routing as an encrypted IPv6 overlay network"; "An experiment in scalable routing as an encrypted IPv6 overlay network";
homepage = "https://yggdrasil-network.github.io/"; homepage = "https://yggdrasil-network.github.io/";

View File

@ -7757,7 +7757,9 @@ in
inherit (darwin.apple_sdk.frameworks) IOKit; inherit (darwin.apple_sdk.frameworks) IOKit;
}; };
yggdrasil = callPackage ../tools/networking/yggdrasil { }; yggdrasil = callPackage ../tools/networking/yggdrasil {
inherit (darwin.apple_sdk.frameworks) Foundation;
};
# To expose more packages for Yi, override the extraPackages arg. # To expose more packages for Yi, override the extraPackages arg.
yi = callPackage ../applications/editors/yi/wrapper.nix { }; yi = callPackage ../applications/editors/yi/wrapper.nix { };