pacproxy: init at 2.0.5
This commit is contained in:
parent
f29031e265
commit
0d394b1428
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/networking/pacproxy/default.nix
Normal file
26
pkgs/tools/networking/pacproxy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue