1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

snet: disable flaky test and other enhancements (#347643)

This commit is contained in:
Peder Bergebakken Sundt 2024-11-14 01:43:50 +01:00 committed by GitHub
commit da355b107f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,10 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule {
pname = "snet";
version = "unstable-2021-11-26";
@ -13,11 +17,14 @@ buildGoModule rec {
vendorHash = "sha256-dubmCLeD8Fwe1msfLN+5WzdbFkfTRnZDU3F49gjWTS4=";
meta = with lib; {
# flaky test, random failures
checkFlags = [ "-skip=TestBloomfilter" ];
meta = {
description = "Transparent proxy works on linux desktop, MacOS, router";
homepage = "https://github.com/monsterxx03/snet";
license = licenses.mit;
maintainers = with maintainers; [ azuwis ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ azuwis ];
mainProgram = "snet";
};
}