ipfs-cluster: fix build on darwin
This commit is contained in:
parent
ed310da737
commit
6852ecdcf5
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildGoModule, fetchFromGitHub, fetchgx, gx-go }:
|
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "ipfs-cluster";
|
pname = "ipfs-cluster";
|
||||||
@ -14,6 +14,8 @@ buildGoModule rec {
|
|||||||
sha256 = "1jh6ynj50jd4w79widaqrgm3h3yz5h03vq0lbsx717a8d9073blh";
|
sha256 = "1jh6ynj50jd4w79widaqrgm3h3yz5h03vq0lbsx717a8d9073blh";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
|
description = "Allocate, replicate, and track Pins across a cluster of IPFS daemons";
|
||||||
homepage = https://cluster.ipfs.io/;
|
homepage = https://cluster.ipfs.io/;
|
||||||
@ -22,4 +24,3 @@ buildGoModule rec {
|
|||||||
maintainers = with maintainers; [ jglukasik ];
|
maintainers = with maintainers; [ jglukasik ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4351,7 +4351,9 @@ in
|
|||||||
buildGoModule = buildGo112Module;
|
buildGoModule = buildGo112Module;
|
||||||
};
|
};
|
||||||
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
|
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
|
||||||
ipfs-cluster = callPackage ../applications/networking/ipfs-cluster { };
|
ipfs-cluster = callPackage ../applications/networking/ipfs-cluster {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
ipget = callPackage ../applications/networking/ipget { };
|
ipget = callPackage ../applications/networking/ipget { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user