depot/packages/networking/hyprspace/project.nix

41 lines
935 B
Nix
Raw Normal View History

{ inputs, lib, pkgs, ... }:
{
2022-09-25 23:02:59 +03:00
projectShells.hyprspace = {
tools = [
2022-09-26 18:59:36 +03:00
pkgs.go_1_18
2022-09-25 23:02:59 +03:00
];
2022-11-07 21:52:27 +02:00
env.GOPATH.eval = "$REPO_DATA_DIR/go";
2022-09-25 23:02:59 +03:00
};
2022-09-26 18:59:36 +03:00
packages.hyprspace = with pkgs; buildGo118Module {
pname = "hyprspace";
version = "0.2.2";
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-lxJZ4W+VY1XWLePrT0uLT2Y2tIOETLzn8NC8FVDruNM=";
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;
};
};
}