Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
702 B
Nix
32 lines
702 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ec2-metadata-mock";
|
|
version = "1.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws";
|
|
repo = "amazon-ec2-metadata-mock";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8X6LBGo496fG0Chhvg3jAaUF6mp8psCzHd+Es75z27Y=";
|
|
};
|
|
|
|
vendorHash = "sha256-jRJX4hvfRuhR5TlZe7LsXaOlUCwmQGem2QKlX3vuk8c=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/{cmd,ec2-metadata-mock}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Amazon EC2 Metadata Mock";
|
|
mainProgram = "ec2-metadata-mock";
|
|
homepage = "https://github.com/aws/amazon-ec2-metadata-mock";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ymatsiuk ];
|
|
};
|
|
}
|