40 lines
935 B
Nix
40 lines
935 B
Nix
{ inputs, lib, pkgs, ... }:
|
|
|
|
{
|
|
projectShells.hyprspace = {
|
|
tools = [
|
|
pkgs.go_1_18
|
|
];
|
|
env.GOPATH.eval = "$REPO_DATA_DIR/go";
|
|
};
|
|
packages.hyprspace = with pkgs; buildGo118Module {
|
|
pname = "hyprspace";
|
|
version = "0.3.1";
|
|
|
|
src = with inputs.nix-filter.lib; let
|
|
dirs = map inDirectory;
|
|
in filter {
|
|
root = ./.;
|
|
include = [
|
|
"go.mod"
|
|
"go.sum"
|
|
(matchExt "go")
|
|
] ++ (dirs [
|
|
"cli"
|
|
"config"
|
|
"p2p"
|
|
"tun"
|
|
]);
|
|
};
|
|
|
|
vendorSha256 = "sha256-lod53SaOILeQDwO9GL4SX3fNpa0iA2FSH1QfULvaBrc=";
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|