hyprspace: init at 0.1.2

This commit is contained in:
Yusuf Bera Ertan 2021-06-13 07:45:07 +03:00 committed by Raphael Megzari
parent 16763ef031
commit 181d764372
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, buildGoModule, fetchFromGitHub, iproute2mac }:
buildGoModule rec {
pname = "hyprspace";
version = "0.1.2";
propagatedBuildInputs = lib.optional stdenv.isDarwin iproute2mac;
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-YQJaK6i4GWEGSlf/1+hzjVhdN6ZjZC55v8w9KEedNg4=";
};
vendorSha256 = "sha256-ErqK2jDTpqUyvll+epdGKRYCJvyvCa90W1GVbbhF0a4=";
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;
};
}

View file

@ -19255,6 +19255,8 @@ in
hydron = callPackage ../servers/hydron { };
hyprspace = callPackage ../applications/networking/hyprspace { inherit (darwin) iproute2mac; };
icecream = callPackage ../servers/icecream { };
icingaweb2 = callPackage ../servers/icingaweb2 { };