Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at github-to-sqlite-beautifulsoup4 26 lines 705 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule 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}