Merge pull request #195109 from ruuda/nginx-config-formatter

nginx-config-formatter: 2019-02-13 -> 1.2.2

authored by

Mario Rodas and committed by
GitHub
4296904f 7bf4a2a5

+6 -6
+6 -6
pkgs/tools/misc/nginx-config-formatter/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, python3 }: 2 2 3 - stdenv.mkDerivation { 4 - version = "2019-02-13"; 3 + stdenv.mkDerivation rec { 4 + version = "1.2.2"; 5 5 pname = "nginx-config-formatter"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "1connect"; 8 + owner = "slomkowski"; 9 9 repo = "nginx-config-formatter"; 10 - rev = "4ea6bbc1bdeb1d28419548aeca90f323e64e0e05"; 11 - sha256 = "0h6pj9i0wim9pzkafi92l1nhlnl2a530vnm7qqi3n2ra8iwfyw4f"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-EUoOfkoVsNpIAwDaQ4NH8MkRIJZI8qeuuHUDE6LuLiI="; 12 12 }; 13 13 14 14 buildInputs = [ python3 ]; ··· 27 27 description = "nginx config file formatter"; 28 28 maintainers = with maintainers; [ Baughn ]; 29 29 license = licenses.asl20; 30 - homepage = "https://github.com/1connect/nginx-config-formatter"; 30 + homepage = "https://github.com/slomkowski/nginx-config-formatter"; 31 31 }; 32 32 }