2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildGoModule, fetchFromGitHub, openssh, makeWrapper }:
|
2017-09-21 21:23:16 +01:00
|
|
|
|
2020-07-07 21:55:08 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "assh";
|
2021-01-21 18:08:38 +00:00
|
|
|
version = "2.11.0";
|
2017-09-21 21:23:16 +01:00
|
|
|
|
2020-07-07 21:55:08 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "advanced-ssh-config";
|
|
|
|
owner = "moul";
|
|
|
|
rev = "v${version}";
|
2021-01-21 18:08:38 +00:00
|
|
|
sha256 = "sha256-/StB5yee9sbkebuJt6JDI+bp52NG0bBhprzmdepL+ek=";
|
2020-07-07 21:55:08 +01:00
|
|
|
};
|
|
|
|
|
2021-01-21 18:08:38 +00:00
|
|
|
vendorSha256 = "sha256-6OAsO7zWAgPfQWD9k+nYH7hnDDUlKIjTB61ivvoubn0=";
|
2017-09-21 21:23:16 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-09-21 23:03:55 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2017-10-06 06:26:19 +01:00
|
|
|
postInstall = ''
|
2020-04-28 02:50:57 +01:00
|
|
|
wrapProgram "$out/bin/assh" \
|
2017-09-21 23:03:55 +01:00
|
|
|
--prefix PATH : ${openssh}/bin
|
2017-09-21 21:23:16 +01:00
|
|
|
'';
|
|
|
|
|
2020-07-07 21:55:08 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/assh --help > /dev/null
|
|
|
|
'';
|
2017-09-21 21:23:16 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-21 21:23:16 +01:00
|
|
|
description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts";
|
2020-07-07 21:55:08 +01:00
|
|
|
homepage = "https://github.com/moul/assh";
|
|
|
|
changelog = "https://github.com/moul/assh/releases/tag/v${version}";
|
2017-09-21 21:23:16 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zzamboni ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
};
|
|
|
|
}
|