{ lib , buildGoModule , fetchFromGitHub , testers , rain }: buildGoModule rec { pname = "rain"; version = "1.6.0"; src = fetchFromGitHub { owner = "aws-cloudformation"; repo = pname; rev = "v${version}"; sha256 = "sha256-sAqWVGzEQJwf7ioQjOFs+1hAn69LmDCMSu0ym59aDsU="; }; vendorHash = "sha256-xmpjoNfz+4d7Un0J6yEhkQG2Ax8hL0dw4OQmwrKq3QI="; subPackages = [ "cmd/rain" ]; ldflags = [ "-s" "-w" ]; passthru.tests.version = testers.testVersion { package = rain; command = "rain --version"; version = "v${version}"; }; meta = with lib; { description = "A development workflow tool for working with AWS CloudFormation"; homepage = "https://github.com/aws-cloudformation/rain"; license = licenses.asl20; maintainers = with maintainers; [ jiegec ]; }; }