3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/nginx-config-formatter/default.nix

33 lines
780 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3 }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2019-03-20 17:49:40 +00:00
version = "2019-02-13";
pname = "nginx-config-formatter";
src = fetchFromGitHub {
owner = "1connect";
repo = "nginx-config-formatter";
2019-03-20 17:49:40 +00:00
rev = "4ea6bbc1bdeb1d28419548aeca90f323e64e0e05";
sha256 = "0h6pj9i0wim9pzkafi92l1nhlnl2a530vnm7qqi3n2ra8iwfyw4f";
};
buildInputs = [ python3 ];
doCheck = true;
checkPhase = ''
python3 $src/test_nginxfmt.py
'';
installPhase = ''
mkdir -p $out/bin
install -m 0755 $src/nginxfmt.py $out/bin/nginxfmt
'';
meta = with lib; {
description = "nginx config file formatter";
2017-01-27 17:53:49 +00:00
maintainers = with maintainers; [ Baughn ];
license = licenses.asl20;
homepage = "https://github.com/1connect/nginx-config-formatter";
};
}