nixpkgs/pkgs/tools/misc/nginx-config-formatter/default.nix
2022-10-08 19:10:26 +02:00

33 lines
753 B
Nix

{ lib, stdenv, fetchFromGitHub, python3 }:
stdenv.mkDerivation rec {
version = "1.2.2";
pname = "nginx-config-formatter";
src = fetchFromGitHub {
owner = "slomkowski";
repo = "nginx-config-formatter";
rev = "v${version}";
sha256 = "sha256-EUoOfkoVsNpIAwDaQ4NH8MkRIJZI8qeuuHUDE6LuLiI=";
};
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";
maintainers = with maintainers; [ Baughn ];
license = licenses.asl20;
homepage = "https://github.com/slomkowski/nginx-config-formatter";
};
}