amazon-ec2-utils: 2.0 -> 2.1.0
See https://github.com/amazonlinux/amazon-ec2-utils/releases/tag/v2.1.0
This commit is contained in:
parent
d2d134fd8e
commit
8e08b60493
1 changed files with 13 additions and 9 deletions
|
@ -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,8 +69,9 @@ 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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue