Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 733 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "aws-lambda-runtime-interface-emulator"; 5 version = "1.0"; 6 7 src = fetchFromGitHub { 8 owner = "aws"; 9 repo = "aws-lambda-runtime-interface-emulator"; 10 rev = "v${version}"; 11 sha256 = "sha256-vbVygZzLlJlxaRF/LIqSJP0gZGyu1wSSdeVjILl/OJE="; 12 }; 13 14 vendorSha256 = "sha256-WcvYPGgkrK7Zs5IplAoUTay5ys9LrDJHpRN3ywEdWRM="; 15 16 # disabled because I lack the skill 17 doCheck = false; 18 19 meta = with lib; { 20 description = "To locally test their Lambda function packaged as a container image."; 21 homepage = "https://github.com/aws/aws-lambda-runtime-interface-emulator"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ teto ]; 24 }; 25}