mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, genericUpdater
|
|
, common-updater-scripts
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "shellhub-agent";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shellhub-io";
|
|
repo = "shellhub";
|
|
rev = "v${version}";
|
|
sha256 = "0cd41ing1pcf1bdaaq00w5h7lih5j2kcaa0m41g3ikm3vd1w5qna";
|
|
};
|
|
|
|
modRoot = "./agent";
|
|
|
|
vendorSha256 = "19gsfhh6idqysdxhpq45sq35gw19adz9lp83krjlhzj1vqm59qma";
|
|
|
|
buildFlagsArray = [ "-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).*";
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|