Merge pull request #63960 from JosephSalisbury/gsctl-0.15.1
gsctl: init at 0.15.4
This commit is contained in:
commit
85def1cb1e
|
@ -2975,6 +2975,11 @@
|
||||||
name = "Sven Slootweg";
|
name = "Sven Slootweg";
|
||||||
github = "joepie91";
|
github = "joepie91";
|
||||||
};
|
};
|
||||||
|
joesalisbury = {
|
||||||
|
email = "salisbury.joseph@gmail.com";
|
||||||
|
github = "JosephSalisbury";
|
||||||
|
name = "Joe Salisbury";
|
||||||
|
};
|
||||||
johanot = {
|
johanot = {
|
||||||
email = "write@ownrisk.dk";
|
email = "write@ownrisk.dk";
|
||||||
github = "johanot";
|
github = "johanot";
|
||||||
|
|
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1688,6 +1688,8 @@ in
|
||||||
|
|
||||||
gscan2pdf = callPackage ../applications/graphics/gscan2pdf { };
|
gscan2pdf = callPackage ../applications/graphics/gscan2pdf { };
|
||||||
|
|
||||||
|
gsctl = callPackage ../applications/misc/gsctl { };
|
||||||
|
|
||||||
gti = callPackage ../tools/misc/gti { };
|
gti = callPackage ../tools/misc/gti { };
|
||||||
|
|
||||||
hdate = callPackage ../applications/misc/hdate { };
|
hdate = callPackage ../applications/misc/hdate { };
|
||||||
|
|
Loading…
Reference in New Issue