2020-07-07 21:55:08 +01:00
|
|
|
{ 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";
|
2020-07-07 21:55:08 +01:00
|
|
|
version = "2.10.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}";
|
|
|
|
sha256 = "0qsb5p52v961akshgs1yla2d7lhcbwixv2skqaappdmhj18a23q2";
|
|
|
|
};
|
|
|
|
|
|
|
|
vendorSha256 = "03ycjhal4g7bs9fhzrq01ijj48czvs272qcqkd9farsha5gf0q0b";
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|