1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "aws-lambda-runtime-interface-emulator";
9 version = "1.25";
10
11 src = fetchFromGitHub {
12 owner = "aws";
13 repo = "aws-lambda-runtime-interface-emulator";
14 rev = "v${version}";
15 sha256 = "sha256-GHoEyTM3vDVmozcKoi5ETG4V10o82HcigmmhIMV0UJg=";
16 };
17
18 vendorHash = "sha256-fGoqKDBg+O4uzGmhEIROsBvDS+6zWCzsXe8U6t98bqk=";
19
20 # disabled because I lack the skill
21 doCheck = false;
22
23 meta = with lib; {
24 description = "Locally test Lambda functions packaged as container images";
25 mainProgram = "aws-lambda-rie";
26 homepage = "https://github.com/aws/aws-lambda-runtime-interface-emulator";
27 license = licenses.asl20;
28 maintainers = [ ];
29 };
30}