about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/snet/default.nix
blob: f458521468cb78ec4656d51ab0b93a790f60d090 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "snet";
  version = "unstable-2021-11-26";

  src = fetchFromGitHub {
    owner = "monsterxx03";
    repo = "snet";
    rev = "89089b55277ce3e21e2ed79a9d307f2ecc62c6db";
    sha256 = "sha256-lTbygQRABv+Dp4i7nDgXYqi4pwU2rtLNfpgtBgsq+7Y=";
  };

  vendorSha256 = "sha256-dubmCLeD8Fwe1msfLN+5WzdbFkfTRnZDU3F49gjWTS4=";

  meta = with lib; {
    description = "Transparent proxy works on linux desktop, MacOS, router";
    homepage = "https://github.com/monsterxx03/snet";
    license = licenses.mit;
    maintainers = with maintainers; [ azuwis ];
  };
}