3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/assh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Normal View History

2021-03-20 22:20:01 +00:00
{ lib
2022-04-07 19:49:40 +01:00
, stdenv
2021-03-20 22:20:01 +00:00
, buildGoModule
, fetchFromGitHub
, openssh
, makeWrapper
2022-04-07 19:49:40 +01:00
, ps
2021-03-20 22:20:01 +00:00
}:
buildGoModule rec {
pname = "assh";
2022-06-10 10:31:35 +01:00
version = "2.14.0";
src = fetchFromGitHub {
repo = "advanced-ssh-config";
owner = "moul";
rev = "v${version}";
2022-06-10 10:31:35 +01:00
sha256 = "sha256-7I4HFinTuVoy1FIiVJqY7vjd5xms0ciuegwhTHRYDKI=";
};
2022-06-10 10:31:35 +01:00
vendorSha256 = "sha256-2VNMwmZY2sb9ib+v7mRkeZ2zkTUtXMaDvAbd3jyQMZY=";
2021-08-21 09:23:50 +01:00
ldflags = [
"-s" "-w" "-X moul.io/assh/v2/pkg/version.Version=${version}"
];
2021-03-20 22:20:01 +00:00
2017-09-21 23:03:55 +01:00
nativeBuildInputs = [ makeWrapper ];
2022-04-07 19:49:40 +01:00
checkInputs = lib.optionals stdenv.isDarwin [ ps ];
postInstall = ''
wrapProgram "$out/bin/assh" \
2017-09-21 23:03:55 +01: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;
};
}