Merge pull request #249764 from anthonyroussel/amazon-ec2-utils_2_1_0

amazon-ec2-utils: 2.0 -> 2.1.0
This commit is contained in:
Mario Rodas 2023-08-26 15:54:58 -05:00 committed by GitHub
commit 0ddbdf5cdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,30 +1,33 @@
{ stdenv
, lib
, fetchFromGitHub
, curl
, gawk
, bash
, python3
, installShellFiles
, bash
, gawk
, curl
}:
stdenv.mkDerivation rec {
pname = "amazon-ec2-utils";
version = "2.0";
version = "2.1.0";
src = fetchFromGitHub {
owner = "aws";
owner = "amazonlinux";
repo = "amazon-ec2-utils";
rev = "v${version}";
hash = "sha256-u1rHBV8uVcCywvQNYagtDleYB12tmhyqDbXTBzt45dk=";
rev = "refs/tags/v${version}";
hash = "sha256-Yr6pVwyvyVGV4xrjL7VFSkRH8d1w8VLPMTVjXfneJUM=";
};
outputs = [ "out" "man" ];
strictDeps = true;
buildInputs = [
python3
bash
python3
];
nativeBuildInputs = [
installShellFiles
];
@ -66,9 +69,10 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
homepage = "https://github.com/aws/amazon-ec2-utils";
changelog = "https://github.com/amazonlinux/amazon-ec2-utils/releases/tag/v${version}";
description = "Contains a set of utilities and settings for Linux deployments in EC2";
homepage = "https://github.com/amazonlinux/amazon-ec2-utils";
license = licenses.mit;
maintainers = with maintainers; [ ketzacoatl thefloweringash ];
maintainers = with maintainers; [ ketzacoatl thefloweringash anthonyroussel ];
};
}