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

39 lines
999 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, openssh, makeWrapper }:
buildGoModule rec {
pname = "assh";
2021-01-21 18:08:38 +00:00
version = "2.11.0";
src = fetchFromGitHub {
repo = "advanced-ssh-config";
owner = "moul";
rev = "v${version}";
2021-01-21 18:08:38 +00:00
sha256 = "sha256-/StB5yee9sbkebuJt6JDI+bp52NG0bBhprzmdepL+ek=";
};
2021-01-21 18:08:38 +00:00
vendorSha256 = "sha256-6OAsO7zWAgPfQWD9k+nYH7hnDDUlKIjTB61ivvoubn0=";
doCheck = false;
2017-09-21 22:03:55 +00:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/assh" \
2017-09-21 22:03:55 +00: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;
};
}