571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
62 lines
1.5 KiB
Nix
62 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.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shellhub-io";
|
|
repo = "shellhub";
|
|
rev = "v${version}";
|
|
hash = "sha256-pxV9WLx0trgG0htWuYG/j634iaQRo5/TXOOU8rOmxDw=";
|
|
};
|
|
|
|
modRoot = "./agent";
|
|
|
|
vendorHash = "sha256-qqh9KdhOt6KDgwUhf6lzb6I7YAhocBSZ7UeyBT0e0eM=";
|
|
|
|
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";
|
|
};
|
|
}
|