nixpkgs/pkgs/applications/networking/hyprspace/default.nix

26 lines
744 B
Nix
Raw Normal View History

2021-06-13 04:45:07 +00:00
{ lib, stdenv, buildGoModule, fetchFromGitHub, iproute2mac }:
buildGoModule rec {
pname = "hyprspace";
2021-06-27 19:53:45 +00:00
version = "0.1.5";
2021-06-13 04:45:07 +00:00
propagatedBuildInputs = lib.optional stdenv.isDarwin iproute2mac;
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-06-27 19:53:45 +00:00
sha256 = "sha256-aLODIaDbSLVEog/F0FVx6ykadCggE0Vebzwjw0sqYJ0=";
2021-06-13 04:45:07 +00:00
};
2021-06-27 19:53:45 +00:00
vendorSha256 = "sha256-rw75xNBBV58F+HBVtD/EslPWxZxLbI3/mJVdJF4usKI=";
2021-06-13 04:45:07 +00: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;
};
}