base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ne / netproxrc / package.nix
blob341c74d2c6646c7ad690bfdbadd68e19626a03d0
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "netproxrc";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "timbertson";
9     repo = "netproxrc";
10     rev = "version-${version}";
11     hash = "sha256-LyHFaT5kej1hy5z28XP+bOSCEj5DHqwMRkvrv/5inQU=";
12   };
14   vendorHash = "sha256-LWNn5qp+Z/M9xTtOZ5RDHq1QEFK/Y2XgBi7H5S7Z7XE=";
16   meta = with lib; {
17     description = "HTTP proxy injecting credentials from a .netrc file";
18     mainProgram = "netproxrc";
19     homepage = "https://github.com/timbertson/netproxrc";
20     license = licenses.mit;
21     maintainers = with maintainers; [ timbertson ];
22   };