zerotiertspu/package.nix
2025-04-14 16:04:52 +04:00

18 lines
415 B
Nix

{ zerotierone, lib }:
zerotierone.overrideAttrs (oldAttrs: {
pname = "zerotierone-tspu";
version = "1.14.2-tspu";
src = builtins.fetchGit {
url = "git@git.dltech.ge:global-it/infra/zerotiertspu.git";
ref = "tspu";
};
patches = [];
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ ];
meta = oldAttrs.meta // {
description = "Custom ZeroTierOne build with private patches";
};
})