about summary refs log tree commit diff
path: root/pkgs/applications/networking/netmaker
diff options
context:
space:
mode:
authorColin Arnott <colin@urandom.co.uk>2022-12-26 05:23:03 +0000
committerColin Arnott <colin@urandom.co.uk>2022-12-31 23:24:21 +0000
commitd328e92f3d5175a902b060976cbf94f4d55983c3 (patch)
treeca68ed56c87e6ed60d5e16c36d1046a695133059 /pkgs/applications/networking/netmaker
parent8ba56d7c0d7490680f2d51ba46a141eca7c46afa (diff)
netmaker: init at 0.17.1
Fixes #207654
Diffstat (limited to 'pkgs/applications/networking/netmaker')
-rw-r--r--pkgs/applications/networking/netmaker/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/applications/networking/netmaker/default.nix b/pkgs/applications/networking/netmaker/default.nix
new file mode 100644
index 0000000000000..ce074c49cb617
--- /dev/null
+++ b/pkgs/applications/networking/netmaker/default.nix
@@ -0,0 +1,39 @@
+{ buildGoModule, fetchFromGitHub, installShellFiles, lib, libglvnd, pkg-config, xorg }:
+
+buildGoModule rec {
+  pname = "netmaker";
+  version = "0.17.1";
+
+  src = fetchFromGitHub {
+    owner = "gravitl";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-8uxPPhy1/FqPGouqzUxY2lGnO/giqH9bJbAqQ9rZI0g=";
+  };
+
+  vendorHash = "sha256-4LaGwwDu3pKd6I6r/F3isCi9CuFqPGvc5SdVTV34qOI=";
+
+  subPackages = [
+    "."
+    "netclient"
+  ];
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [
+    libglvnd
+    xorg.libX11
+    xorg.libXcursor
+    xorg.libXi
+    xorg.libXinerama
+    xorg.libXrandr
+  ];
+
+  meta = with lib; {
+    description = "WireGuard automation from homelab to enterprise";
+    homepage = "https://netmaker.io";
+    changelog = "https://github.com/gravitl/netmaker/-/releases/v${version}";
+    license = licenses.sspl;
+    maintainers = with maintainers; [ urandom ];
+  };
+}