summary refs log tree commit diff
path: root/pkgs/tools/networking/assh/default.nix
blob: 9d4230524bed6c082625e6f4f037588425e2e8f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, buildGoPackage, fetchFromGitHub, openssh, makeWrapper }:

buildGoPackage rec {
  pname = "assh";
  version = "2.7.0";

  goPackagePath = "github.com/moul/advanced-ssh-config";
  subPackages = [ "cmd/assh" ];

  nativeBuildInputs = [ makeWrapper ];

  postInstall = ''
    wrapProgram "$bin/bin/assh" \
      --prefix PATH : ${openssh}/bin
  '';

  src = fetchFromGitHub {
    repo = "advanced-ssh-config";
    owner = "moul";
    rev = "v${version}";
    sha256 = "0jfpcr8990lb7kacadbishdkz5l8spw24ksdlb79x34sdbbp3fm6";
  };

  meta = with stdenv.lib; {
    description = "Advanced SSH config - Regex, aliases, gateways, includes and dynamic hosts";
    homepage = "https://github.com/moul/advanced-ssh-config";
    license = licenses.mit;
    maintainers = with maintainers; [ zzamboni ];
    platforms = with platforms; linux ++ darwin;
  };
}