2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2021-01-05 17:05:55 +00:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2022-03-05 16:20:37 +00:00
|
|
|
, gitUpdater
|
2021-04-05 15:23:46 +00:00
|
|
|
, makeWrapper
|
|
|
|
, openssh
|
2021-01-05 17:05:55 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "shellhub-agent";
|
2022-09-22 12:36:57 +00:00
|
|
|
version = "0.10.1";
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shellhub-io";
|
|
|
|
repo = "shellhub";
|
|
|
|
rev = "v${version}";
|
2022-09-22 12:36:57 +00:00
|
|
|
sha256 = "jeZh1vPXUN/jcf306S6KdIeHygci+4+uky4MXQgRlpA=";
|
2021-01-05 17:05:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
modRoot = "./agent";
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
vendorSha256 = "sha256-AqtDI1GFw4cduFdWRSh9lYe/OwvEdu5iB0+ud8QPgXM=";
|
2021-01-05 17:05:55 +00:00
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ];
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
passthru = {
|
2022-03-05 16:20:37 +00:00
|
|
|
updateScript = gitUpdater {
|
2021-01-05 17:05:55 +00:00
|
|
|
inherit pname version;
|
|
|
|
rev-prefix = "v";
|
|
|
|
ignoredVersions = ".(rc|beta).*";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/agent --prefix PATH : ${lib.makeBinPath [ openssh ]}
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2021-01-05 17:05:55 +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;
|
|
|
|
};
|
|
|
|
}
|