mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
Merge pull request #235860 from terlar/add-pacproxy
pacproxy: init at 2.0.5
This commit is contained in:
commit
6183e4f9a7
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 ];
|
||||
};
|
||||
}
|
@ -897,6 +897,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 New Issue
Block a user