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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
911 B
Nix
Raw Normal View History

{ buildGoModule
, fetchFromGitHub
, installShellFiles
, lib
, libglvnd
, pkg-config
, subPackages ? ["." "netclient"]
, xorg
}:
2022-12-26 05:23:03 +00:00
buildGoModule rec {
pname = "netmaker";
2023-07-23 00:45:14 +00:00
version = "0.20.4";
2022-12-26 05:23:03 +00:00
src = fetchFromGitHub {
owner = "gravitl";
repo = pname;
rev = "v${version}";
2023-07-23 00:45:14 +00:00
hash = "sha256-4njC4hQoiAWlkwyvP14wWK+PxQ6bGR5QzteurHcuo4o=";
2022-12-26 05:23:03 +00:00
};
2023-07-23 00:45:14 +00:00
vendorHash = "sha256-f6foYD/2b9iLzQbPTXeiKCdrm7gz5E8ulWHZaj+KB/M=";
2022-12-26 05:23:03 +00:00
inherit subPackages;
2022-12-26 05:23:03 +00:00
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 ];
};
}