2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2023-07-15 17:15:38 +00:00
|
|
|
, buildGoModule
|
2021-01-05 17:05:55 +00:00
|
|
|
, fetchFromGitHub
|
2023-08-04 22:07:22 +00:00
|
|
|
, nix-update-script
|
2021-04-05 15:23:46 +00:00
|
|
|
, makeWrapper
|
|
|
|
, openssh
|
2022-10-30 15:09:59 +00:00
|
|
|
, libxcrypt
|
2023-05-24 13:37:59 +00:00
|
|
|
, testers
|
|
|
|
, shellhub-agent
|
2021-01-05 17:05:55 +00:00
|
|
|
}:
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
buildGoModule rec {
|
2021-01-05 17:05:55 +00:00
|
|
|
pname = "shellhub-agent";
|
2024-10-04 16:56:33 +00:00
|
|
|
version = "0.16.4";
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shellhub-io";
|
|
|
|
repo = "shellhub";
|
|
|
|
rev = "v${version}";
|
2024-10-04 16:56:33 +00:00
|
|
|
hash = "sha256-pxV9WLx0trgG0htWuYG/j634iaQRo5/TXOOU8rOmxDw=";
|
2021-01-05 17:05:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
modRoot = "./agent";
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
vendorHash = "sha256-qqh9KdhOt6KDgwUhf6lzb6I7YAhocBSZ7UeyBT0e0eM=";
|
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 = {
|
2023-08-04 22:07:22 +00:00
|
|
|
updateScript = nix-update-script { };
|
2023-05-24 13:37:59 +00:00
|
|
|
|
|
|
|
tests.version = testers.testVersion {
|
|
|
|
package = shellhub-agent;
|
|
|
|
command = "agent --version";
|
|
|
|
version = "v${version}";
|
|
|
|
};
|
2021-01-05 17:05:55 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2022-10-30 15:09:59 +00:00
|
|
|
buildInputs = [ libxcrypt ];
|
2021-04-05 15:23:46 +00:00
|
|
|
|
|
|
|
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;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "agent";
|
2021-01-05 17:05:55 +00:00
|
|
|
};
|
|
|
|
}
|