mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
awless: init at 0.0.13
This commit is contained in:
parent
32befcb62b
commit
6515854248
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/virtualization/awless/default.nix
Normal file
24
pkgs/tools/virtualization/awless/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "awless-${version}";
|
||||
version = "0.0.13";
|
||||
rev = "${version}";
|
||||
|
||||
goPackagePath = "github.com/wallix/awless";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "wallix";
|
||||
repo = "awless";
|
||||
sha256 = "045n4r2mk40pjggsfcjlxni6q4arybs9x9raghqb9n8dyfg9v5kv";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/wallix/awless/;
|
||||
description = "A Mighty CLI for AWS";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ pradeepchhetri ];
|
||||
};
|
||||
}
|
|
@ -460,6 +460,8 @@ with pkgs;
|
|||
|
||||
azure-vhd-utils = callPackage ../tools/misc/azure-vhd-utils { };
|
||||
|
||||
awless = callPackage ../tools/virtualization/awless { };
|
||||
|
||||
ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { };
|
||||
|
||||
ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { };
|
||||
|
|
Loading…
Reference in a new issue