warp-plus: init at 1.2.4 (#351439)

This commit is contained in:
Aleksana 2024-10-27 17:06:15 +08:00 committed by GitHub
commit ce46149bac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
testers,
warp-plus,
}:
buildGoModule rec {
pname = "warp-plus";
version = "1.2.4";
src = fetchFromGitHub {
owner = "bepass-org";
repo = "warp-plus";
rev = "v${version}";
hash = "sha256-fFyYch14JqXSmnplPJ8c3epOxromZmEJAdcuSgkKbcM=";
};
vendorHash = "sha256-/rBZqrX9xZT8yOZwynkOOQyPl0govNmvsEqWVxsuvB4=";
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
checkFlags =
let
# Skip tests that require network access
skippedTests = [
"TestConcurrencySafety"
"TestTwoDevicePing"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = warp-plus; };
};
meta = {
description = "Warp + Psiphon, an anti censorship utility for Iran";
homepage = "https://github.com/bepass-org/warp-plus";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ paveloom ];
mainProgram = "warp-plus";
};
}

View File

@ -33229,6 +33229,10 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security Foundation;
};
warp-plus = callPackage ../by-name/wa/warp-plus/package.nix {
buildGoModule = buildGo122Module;
};
warpd = callPackage ../applications/misc/warpd { };
watershot = callPackage ../applications/misc/watershot { };