Unverified Commit e4e98c97 authored by tomf's avatar tomf Committed by GitHub
Browse files

snid: init at 0.4.0 (#506555)

parents 49df829f c9b78cdb
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  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";
  };
})