pacproxy: init at 2.0.5

This commit is contained in:
Terje Larsen 2023-06-03 22:53:12 +00:00
parent f29031e265
commit 0d394b1428
No known key found for this signature in database
GPG key ID: DE147A553FC5AB4A
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pacproxy";
version = "2.0.5";
src = fetchFromGitHub {
owner = "williambailey";
repo = "pacproxy";
rev = "v${version}";
hash = "sha256-oDSptPihrDIiTCgcP4t2J3vJBNGMViyPAAmBv4ynLNU=";
};
vendorHash = "sha256-0Go+xwzaT1qt+cJfcPkC8ft3eB/OZCvOi2Pnn/A/rtQ=";
meta = with lib; {
description = "A no-frills local HTTP proxy server powered by a proxy auto-config (PAC) file";
homepage = "https://github.com/williambailey/pacproxy";
changelog = "https://github.com/williambailey/pacproxy/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ terlar ];
};
}

View file

@ -889,6 +889,8 @@ with pkgs;
packr = callPackage ../development/libraries/packr { };
pacproxy = callPackage ../tools/networking/pacproxy { };
perseus-cli = callPackage ../development/tools/perseus-cli {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};