2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-12-31 21:40:07 +00:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, genericUpdater
|
|
|
|
, common-updater-scripts
|
|
|
|
}:
|
2020-12-26 03:06:27 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "shellhub-agent";
|
2021-03-22 16:44:24 +00:00
|
|
|
version = "0.6.0";
|
2020-12-26 03:06:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shellhub-io";
|
|
|
|
repo = "shellhub";
|
|
|
|
rev = "v${version}";
|
2021-03-22 16:44:24 +00:00
|
|
|
sha256 = "0vdasz3qph73xb9y831bnr1hpcw0669n9zckqn95v1bsjc936313";
|
2020-12-26 03:06:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
modRoot = "./agent";
|
|
|
|
|
2021-03-22 16:44:24 +00:00
|
|
|
vendorSha256 = "059772rd1l7zyf2vlqjm35hg8ibmjc1p6cfazqd47n8mqqlqkilw";
|
2020-12-26 03:06:27 +00:00
|
|
|
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.AgentVersion=v${version}" ];
|
|
|
|
|
2020-12-31 21:40:07 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = genericUpdater {
|
|
|
|
inherit pname version;
|
|
|
|
versionLister = "${common-updater-scripts}/bin/list-git-tags ${src.meta.homepage}";
|
|
|
|
rev-prefix = "v";
|
|
|
|
ignoredVersions = ".(rc|beta).*";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-26 03:06:27 +00:00
|
|
|
description =
|
|
|
|
"Enables easy access any Linux device behind firewall and NAT";
|
|
|
|
longDescription = ''
|
|
|
|
ShellHub is a modern SSH server for remotely accessing Linux devices via
|
|
|
|
command line (using any SSH client) or web-based user interface, designed
|
|
|
|
as an alternative to _sshd_. Think ShellHub as centralized SSH for the the
|
|
|
|
edge and cloud computing.
|
|
|
|
'';
|
|
|
|
homepage = "https://shellhub.io/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ otavio ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|