{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "air"; version = "1.27.2"; src = fetchFromGitHub { owner = "cosmtrek"; repo = "air"; rev = "v${version}"; sha256 = "sha256-VQymiDge42JBQwAHfHMF8imBC90uPout0fZRuQVOP5w="; }; vendorSha256 = "sha256-B7AgUFjiW3P1dU88u3kswbCQJ7Qq7rgPlX+b+3Pq1L4="; subPackages = [ "." ]; meta = with lib; { description = "Live reload for Go apps"; homepage = "https://github.com/cosmtrek/air"; license = licenses.gpl3Only; maintainers = with maintainers; [ Gonzih ]; }; }