3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/hyprspace/default.nix

26 lines
744 B
Nix
Raw Normal View History

2021-06-13 05:45:07 +01:00
{ lib, stdenv, buildGoModule, fetchFromGitHub, iproute2mac }:
buildGoModule rec {
pname = "hyprspace";
2021-10-30 00:41:21 +01:00
version = "0.1.7";
2021-06-13 05:45:07 +01:00
propagatedBuildInputs = lib.optional stdenv.isDarwin iproute2mac;
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-10-30 00:41:21 +01:00
sha256 = "sha256-Ecdxs6see4uexY6DatZ/VSGgWR81zRjo3AeAsXSjJ4A=";
2021-06-13 05:45:07 +01:00
};
2021-10-30 00:41:21 +01:00
vendorSha256 = "sha256-nFiBHhtvTu9Ya6n1KUF+pOXrksHMOph7ABVtGSWVWlo=";
2021-06-13 05:45:07 +01:00
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;
};
}