snid: init at 0.4.0 (#506555)

This commit is contained in:
tomf
2026-04-05 01:44:07 +00:00
committed by GitHub
+27
View File
@@ -0,0 +1,27 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "snid";
version = "0.4.0";
src = fetchFromGitHub {
owner = "AGWA";
repo = "snid";
tag = "v${finalAttrs.version}";
hash = "sha256-syKEtG/B1Yy0BAQqlR6o4uIRSwCnFOBsPpV4arqO/I4=";
};
vendorHash = "sha256-cVarG6Tx4yWpZE5BLZsMtLV9LF1lsiFfIXxhYiNjQlY=";
meta = {
description = "Zero config TLS proxy server that uses SNI";
homepage = "https://github.com/AGWA/snid";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tomfitzhenry ];
mainProgram = "snid";
};
})