gsctl: init at 0.15.4

This commit is contained in:
Joseph Salisbury 2019-06-30 20:00:21 +01:00
parent 222a8db288
commit 4032ca6bf0
No known key found for this signature in database
GPG key ID: 1C6A41349CB55511
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -1688,6 +1688,8 @@ in
gscan2pdf = callPackage ../applications/graphics/gscan2pdf { };
gsctl = callPackage ../applications/misc/gsctl { };
gti = callPackage ../tools/misc/gti { };
hdate = callPackage ../applications/misc/hdate { };