{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "atlantis"; version = "0.16.1"; src = fetchFromGitHub { owner = "runatlantis"; repo = "atlantis"; rev = "v${version}"; sha256 = "sha256-D549pInoK8ispgcn8LYdix19Hp7wO6w2/d2Y1L/9Px8="; }; vendorSha256 = null; doCheck = false; subPackages = [ "." ]; meta = with lib; { homepage = "https://github.com/runatlantis/atlantis"; description = "Terraform Pull Request Automation"; license = licenses.asl20; maintainers = with maintainers; [ jpotier ]; }; }