zt-tcp-relay: init at 2023-07-11
All checks were successful
checks-impure / test (pull_request) Successful in 1m27s
checks / test (pull_request) Successful in 2m36s

This commit is contained in:
Jörg Thalheim 2024-01-12 13:49:36 +01:00
parent c86e465e35
commit e1729a0991
2 changed files with 27 additions and 0 deletions

View File

@ -9,6 +9,7 @@
packages = {
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
zerotier-members = pkgs.callPackage ./zerotier-members { };
zt-tcp-relay = pkgs.callPackage ./zt-tcp-relay { };
merge-after-ci = pkgs.callPackage ./merge-after-ci {
inherit (config.packages) tea-create-pr;
};

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage {
pname = "zt-tcp-relay";
version = "unstable-2023-07-11";
src = fetchFromGitHub {
owner = "alexander-akhmetov";
repo = "zt-tcp-relay";
rev = "b8d3a892c60581e938724a1d5dfb0e1884a9fa6f";
hash = "sha256-7ZNWyPf/b4dJqyPQFTBrv2RvY9dDz990CvwcHpaCKSA=";
};
cargoHash = "sha256-IOxWLvA6jqSYqfDZJn9Set/KKFhf03NsNm7Y67paxCQ=";
meta = with lib; {
description = "ZeroTier One TCP relay";
homepage = "https://github.com/alexander-akhmetov/zt-tcp-relay";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
mainProgram = "zt-tcp-relay";
};
}