depot/third_party/nixpkgs/pkgs/applications/networking/shellhub-agent/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

61 lines
1.5 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, nix-update-script
, makeWrapper
, openssh
, libxcrypt
, testers
, shellhub-agent
}:
buildGoModule rec {
pname = "shellhub-agent";
version = "0.16.0";
src = fetchFromGitHub {
owner = "shellhub-io";
repo = "shellhub";
rev = "v${version}";
hash = "sha256-CJ9ZkoQmZlDI9mgZkEOWuJn66Dvt2f1DjPGf140qJDg=";
};
modRoot = "./agent";
vendorHash = "sha256-QWscqQlkvpfvJnI4C74qqD2P9V7ZAY29kCLF1WTTJ7Q=";
ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ];
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion {
package = shellhub-agent;
command = "agent --version";
version = "v${version}";
};
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ libxcrypt ];
postInstall = ''
wrapProgram $out/bin/agent --prefix PATH : ${lib.makeBinPath [ openssh ]}
'';
meta = with lib; {
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;
mainProgram = "agent";
};
}