nixpkgs/pkgs/tools/networking/assh/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

2021-03-21 01:20:01 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
, openssh
, makeWrapper
}:
buildGoModule rec {
pname = "assh";
2022-01-04 00:16:16 +03:00
version = "2.12.1";
src = fetchFromGitHub {
repo = "advanced-ssh-config";
owner = "moul";
rev = "v${version}";
2022-01-04 00:16:16 +03:00
sha256 = "1r3fny4k1crpjasgsp09qf0p3l9vg8c0ddbb8jd6qnqnwwprqfxd";
};
2022-01-04 00:16:16 +03:00
vendorSha256 = "14x7m900mxiwgbbxs56pdqsmx56c4qir5j4dz57bwr10rmh25fy4";
doCheck = false;
2021-08-21 11:23:50 +03:00
ldflags = [
"-s" "-w" "-X moul.io/assh/v2/pkg/version.Version=${version}"
];
2021-03-21 01:20:01 +03:00
2017-09-22 01:03:55 +03:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/assh" \
2017-09-22 01:03:55 +03:00
--prefix PATH : ${openssh}/bin
'';
doInstallCheck = true;
installCheckPhase = ''
$out/bin/assh --help > /dev/null
'';
meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ zzamboni ];
platforms = with platforms; linux ++ darwin;
};
}