Merge pull request #174752 from Yureien/init/wgcf

This commit is contained in:
Ben Siraphob
2022-05-26 09:03:38 -07:00
committed by GitHub
3 changed files with 33 additions and 0 deletions
+6
View File
@@ -14016,6 +14016,12 @@
githubId = 7040031;
name = "Yannik Sander";
};
yureien = {
email = "contact@sohamsen.me";
github = "Yureien";
githubId = 17357089;
name = "Soham Sen";
};
yuriaisaka = {
email = "yuri.aisaka+nix@gmail.com";
github = "yuriaisaka";
@@ -0,0 +1,25 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "wgcf";
version = "2.2.14";
src = fetchFromGitHub {
owner = "ViRb3";
repo = pname;
rev = "v${version}";
hash = "sha256-6V4fIoFB0fuCEu1Rj8QWGDNdgystrD/gefjbshvxVsw=";
};
subPackages = ".";
vendorSha256 = "sha256-NGlV/qcnUlNLvt3uVRdfx+lUDgqAEBEowW9WIHBY+AI=";
meta = with lib; {
description = "Cross-platform, unofficial CLI for Cloudflare Warp";
homepage = "https://github.com/ViRb3/wgcf";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ yureien ];
};
}
+2
View File
@@ -11726,6 +11726,8 @@ with pkgs;
wg-bond = callPackage ../applications/networking/wg-bond { };
wgcf = callPackage ../applications/networking/wgcf { };
which = callPackage ../tools/system/which { };
whsniff = callPackage ../applications/networking/sniffers/whsniff { };