lol

Merge pull request #182351 from jiegec/rain

rain: init at 1.2.0

authored by

Sebastián Mancilla and committed by
GitHub
de93b48a b9ce2756

+42
+38
pkgs/development/tools/rain/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , testers 5 + , rain 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "rain"; 10 + version = "1.2.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "aws-cloudformation"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + sha256 = "sha256-6YKZy6sdy1Yi2cDaLMA54GBTZ9uPhYi5Cq5QqCGbD5k="; 17 + }; 18 + 19 + vendorSha256 = "sha256-e3R8+xarofbx3Ky6JIfDbysTQETCUaQj/QmzAiU7fZk="; 20 + 21 + subPackages = [ "cmd/rain" ]; 22 + 23 + ldflags = [ "-s" "-w" ]; 24 + 25 + passthru.tests.version = testers.testVersion { 26 + package = rain; 27 + command = "rain --version"; 28 + version = "v${version}"; 29 + }; 30 + 31 + meta = with lib; { 32 + description = "A development workflow tool for working with AWS CloudFormation"; 33 + homepage = "https://github.com/aws-cloudformation/rain"; 34 + license = licenses.asl20; 35 + maintainers = with maintainers; [ jiegec ]; 36 + platforms = platforms.unix; 37 + }; 38 + }
+4
pkgs/top-level/all-packages.nix
··· 10158 10158 10159 10159 radvd = callPackage ../tools/networking/radvd { }; 10160 10160 10161 + rain = callPackage ../development/tools/rain { 10162 + buildGoModule = buildGo117Module; 10163 + }; 10164 + 10161 10165 rainbowstream = with python3.pkgs; toPythonApplication rainbowstream; 10162 10166 10163 10167 rambox = callPackage ../applications/networking/instant-messengers/rambox { };