2022-08-02 21:27:50 +03:00
|
|
|
{ lib, stdenv, buildGo117Module, fetchFromGitHub, iproute2mac }:
|
2022-02-05 21:42:36 +02:00
|
|
|
|
2022-08-02 21:27:50 +03:00
|
|
|
buildGo117Module rec {
|
2022-02-05 21:42:36 +02:00
|
|
|
pname = "hyprspace";
|
|
|
|
version = "0.2.2";
|
|
|
|
|
|
|
|
propagatedBuildInputs = lib.optional stdenv.isDarwin iproute2mac;
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./0001-Lain-ipfs-bootstrap-nodes.patch
|
|
|
|
./0002-Remove-quic-transport-for-Lain-ipfs.patch
|
|
|
|
./0003-Remove-dep-from-go.mod.patch
|
2022-06-17 23:19:23 +03:00
|
|
|
./0004-Use-more-NAT-traversal-features.patch
|
2022-09-25 02:41:27 +03:00
|
|
|
./0005-Grab-bootstrap-peers-from-IPFS-API.patch
|
2022-02-05 21:42:36 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-UlIQCy4moW58tQ1dqxrPsU5LN1Bs/Jy5X+2CEmXdYIk=";
|
|
|
|
};
|
|
|
|
|
|
|
|
vendorSha256 = "sha256-8j9M8LrcqiPShCCNOmmJoY6wclHRiX2xOJH/wvlwvwY=";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A Lightweight VPN Built on top of Libp2p for Truly Distributed Networks.";
|
|
|
|
homepage = "https://github.com/hyprspace/hyprspace";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ yusdacra ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|