about summary refs log tree commit diff
path: root/pkgs/tools/virtualization/awless/default.nix
blob: 97b3fbd1b7a6746001b374264659165117d4ea62 (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
24
25
26
{ stdenv, lib, 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 ];
    # asm: InitTextSym double init for "".Syscall
    # panic: invalid use of LSym - NewFuncInfo with Extra of type *obj.FuncInfo
    broken = (stdenv.isLinux && stdenv.isAarch64);
  };
}