nixpkgs/pkgs/by-name/ne/netproxrc/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

24 lines
628 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "netproxrc";
version = "1.1.0";
src = fetchFromGitHub {
owner = "timbertson";
repo = "netproxrc";
rev = "version-${version}";
hash = "sha256-LyHFaT5kej1hy5z28XP+bOSCEj5DHqwMRkvrv/5inQU=";
};
vendorHash = "sha256-LWNn5qp+Z/M9xTtOZ5RDHq1QEFK/Y2XgBi7H5S7Z7XE=";
meta = with lib; {
description = "HTTP proxy injecting credentials from a .netrc file";
mainProgram = "netproxrc";
homepage = "https://github.com/timbertson/netproxrc";
license = licenses.mit;
maintainers = with maintainers; [ timbertson ];
};
}