pacproxy: init at 2.0.5

+28
+26
pkgs/tools/networking/pacproxy/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "pacproxy"; 8 + version = "2.0.5"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "williambailey"; 12 + repo = "pacproxy"; 13 + rev = "v${version}"; 14 + hash = "sha256-oDSptPihrDIiTCgcP4t2J3vJBNGMViyPAAmBv4ynLNU="; 15 + }; 16 + 17 + vendorHash = "sha256-0Go+xwzaT1qt+cJfcPkC8ft3eB/OZCvOi2Pnn/A/rtQ="; 18 + 19 + meta = with lib; { 20 + description = "A no-frills local HTTP proxy server powered by a proxy auto-config (PAC) file"; 21 + homepage = "https://github.com/williambailey/pacproxy"; 22 + changelog = "https://github.com/williambailey/pacproxy/releases/tag/v${version}"; 23 + license = licenses.asl20; 24 + maintainers = with maintainers; [ terlar ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 889 890 packr = callPackage ../development/libraries/packr { }; 891 892 perseus-cli = callPackage ../development/tools/perseus-cli { 893 inherit (darwin.apple_sdk.frameworks) CoreServices; 894 };
··· 889 890 packr = callPackage ../development/libraries/packr { }; 891 892 + pacproxy = callPackage ../tools/networking/pacproxy { }; 893 + 894 perseus-cli = callPackage ../development/tools/perseus-cli { 895 inherit (darwin.apple_sdk.frameworks) CoreServices; 896 };