mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
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";
|
||||
github = "joepie91";
|
||||
};
|
||||
joesalisbury = {
|
||||
email = "salisbury.joseph@gmail.com";
|
||||
github = "JosephSalisbury";
|
||||
name = "Joe Salisbury";
|
||||
};
|
||||
johanot = {
|
||||
email = "write@ownrisk.dk";
|
||||
github = "johanot";
|
||||
|
22
pkgs/applications/misc/gsctl/default.nix
Normal file
22
pkgs/applications/misc/gsctl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user