mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
31 lines
726 B
Nix
31 lines
726 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "snet";
|
|
version = "unstable-2021-11-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "monsterxx03";
|
|
repo = "snet";
|
|
rev = "89089b55277ce3e21e2ed79a9d307f2ecc62c6db";
|
|
sha256 = "sha256-lTbygQRABv+Dp4i7nDgXYqi4pwU2rtLNfpgtBgsq+7Y=";
|
|
};
|
|
|
|
vendorHash = "sha256-dubmCLeD8Fwe1msfLN+5WzdbFkfTRnZDU3F49gjWTS4=";
|
|
|
|
# flaky test, random failures
|
|
checkFlags = [ "-skip=TestBloomfilter" ];
|
|
|
|
meta = {
|
|
description = "Transparent proxy works on linux desktop, MacOS, router";
|
|
homepage = "https://github.com/monsterxx03/snet";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ azuwis ];
|
|
mainProgram = "snet";
|
|
};
|
|
}
|