reproxy: 1.2.2 -> 1.2.3 (#383828)

authored by

Nikolay Korotkiy and committed by
GitHub
55a51685 2ef43dd6

+6 -6
+6 -6
pkgs/by-name/re/reproxy/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "reproxy"; 9 - version = "1.2.2"; 9 + version = "1.2.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "umputun"; 13 13 repo = "reproxy"; 14 - rev = "v${version}"; 15 - hash = "sha256-UQ20mP+7AsrkNN+tvaRb8BcpHu76bpmswtR2PL4/JsE="; 14 + tag = "v${version}"; 15 + hash = "sha256-u2hS06UOu+YYEB03Xtvxg1XJx2FO3AqxCsCnR8YfFj4="; 16 16 }; 17 17 18 18 vendorHash = null; ··· 34 34 35 35 __darwinAllowLocalNetworking = true; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Simple edge server / reverse proxy"; 39 39 homepage = "https://reproxy.io/"; 40 40 changelog = "https://github.com/umputun/reproxy/releases/tag/${src.rev}"; 41 - license = licenses.mit; 42 - maintainers = with maintainers; [ sikmir ]; 41 + license = lib.licenses.mit; 42 + maintainers = with lib.maintainers; [ sikmir ]; 43 43 mainProgram = "reproxy"; 44 44 }; 45 45 }