about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/virtualization/awless/default.nix
blob: 3faf90ab4ac6394db63c2a2e5fbd16c1ae4c9686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, 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 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 ];
  };
}