summary refs log tree commit diff
path: root/pkgs/applications/misc/gsctl/default.nix
blob: e80f43f5bd9ba07b5eb8d8f6d2d598a67cc52c56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "gsctl";
  version = "0.15.4";

  goPackagePath = "github.com/giantswarm/gsctl";

  src = fetchFromGitHub {
    owner = "giantswarm";
    repo = pname;
    rev  = version;
    sha256 = "0s5bli08wfd9xszx3kc90k51vlgjc00r0qg4mikb6qdc4pxpgsxj";
  };

  meta = with stdenv.lib; {
    description = "The Giant Swarm command line interface";
    homepage = "https://github.com/giantswarm/gsctl";
    license = licenses.asl20;
    maintainers = with maintainers; [ joesalisbury ];
  };
}