mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
28b07a359b
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{ lib
|
|
, buildGo120Module
|
|
, fetchFromGitHub
|
|
, gitUpdater
|
|
, makeWrapper
|
|
, openssh
|
|
, libxcrypt
|
|
, testers
|
|
, shellhub-agent
|
|
}:
|
|
|
|
buildGo120Module rec {
|
|
pname = "shellhub-agent";
|
|
version = "0.11.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shellhub-io";
|
|
repo = "shellhub";
|
|
rev = "v${version}";
|
|
sha256 = "/nBwi94VFKzdZxQ030tCqEhDM0fE3bxc4MraOCNtmbE=";
|
|
};
|
|
|
|
modRoot = "./agent";
|
|
|
|
vendorSha256 = "sha256-1R5K/BlMNKtCESV5xVFh2MawfloSDmST2764WDXmqZk=";
|
|
|
|
ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "v";
|
|
ignoredVersions = ".(rc|beta).*";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|