Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
openssh,
|
|
makeWrapper,
|
|
ps,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "assh";
|
|
version = "2.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "advanced-ssh-config";
|
|
owner = "moul";
|
|
tag = "v${version}";
|
|
hash = "sha256-rvJJZqVSBdaJ154NV6RaxbymsSsHbKnlJDeR6KHQE7M=";
|
|
};
|
|
|
|
vendorHash = "sha256-L2Uo/jsMtxQClF1UDa7NIUbOm7BflvncNsjqGnCsPKo=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X moul.io/assh/v2/pkg/version.Version=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
nativeCheckInputs = lib.optionals stdenv.hostPlatform.isDarwin [ ps ];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/assh" \
|
|
--prefix PATH : ${openssh}/bin
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/assh --help > /dev/null
|
|
'';
|
|
|
|
meta = {
|
|
description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts";
|
|
homepage = "https://github.com/moul/assh";
|
|
changelog = "https://github.com/moul/assh/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|