nixpkgs/pkgs/tools/virtualization/awless/default.nix
2020-04-10 17:54:53 +01:00

24 lines
605 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "awless";
version = "0.1.11";
goPackagePath = "github.com/wallix/awless";
src = fetchFromGitHub {
owner = "wallix";
repo = "awless";
rev = "v${version}";
sha256 = "187i21yrm10r3f5naj3jl0rmydr5dkhmdhxs90hhf8hjp59a89kg";
};
meta = with stdenv.lib; {
homepage = "https://github.com/wallix/awless/";
description = "A Mighty CLI for AWS";
platforms = with platforms; linux ++ darwin;
license = licenses.asl20;
maintainers = with maintainers; [ pradeepchhetri swdunlop ];
};
}