mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46865ea66f
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, genericUpdater
|
|
, common-updater-scripts
|
|
, makeWrapper
|
|
, openssh
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "shellhub-agent";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shellhub-io";
|
|
repo = "shellhub";
|
|
rev = "v${version}";
|
|
sha256 = "saaohHHjX9ws74SXlpP+V9cks0ddLkz04ceY14uoVhA=";
|
|
};
|
|
|
|
modRoot = "./agent";
|
|
|
|
vendorSha256 = "sha256-Xfzk6Ts6+LzGaMTcbopGG6WT541nkAnZxq/3AlX81ks=";
|
|
|
|
ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ];
|
|
|
|
passthru = {
|
|
updateScript = genericUpdater {
|
|
inherit pname version;
|
|
versionLister = "${common-updater-scripts}/bin/list-git-tags ${src.meta.homepage}";
|
|
rev-prefix = "v";
|
|
ignoredVersions = ".(rc|beta).*";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
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;
|
|
};
|
|
}
|