18 lines
415 B
Nix
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";
|
|
};
|
|
})
|