summary refs log tree commit diff
path: root/pkgs/tools/networking/autossh/default.nix
blob: f89302c4295fae88a9e80651bbd2852ba05906c4 (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
32
33
34
{stdenv, fetchurl, openssh}:

stdenv.mkDerivation rec {
  name = "autossh-1.4g";

  src = fetchurl {
    url = "http://www.harding.motd.ca/autossh/${name}.tgz";
    sha256 = "0xqjw8df68f4kzkns5gcah61s5wk0m44qdk2z1d6388w6viwxhsz";
  };

  preConfigure = ''
    export ac_cv_func_malloc_0_nonnull=yes
    export ac_cv_func_realloc_0_nonnull=yes
  '';

  nativeBuildInputs = [ openssh ];

  installPhase =
    ''
      install -D -m755 autossh      $out/bin/autossh                          || return 1
      install -D -m644 CHANGES      $out/share/doc/autossh/CHANGES            || return 1
      install -D -m644 README       $out/share/doc/autossh/README             || return 1
      install -D -m644 autossh.host $out/share/autossh/examples/autossh.host  || return 1
      install -D -m644 rscreen      $out/share/autossh/examples/rscreen       || return 1
      install -D -m644 autossh.1    $out/man/man1/autossh.1                   || return 1
    '';

  meta = with stdenv.lib; {
    homepage = "https://www.harding.motd.ca/autossh/";
    description = "Automatically restart SSH sessions and tunnels";
    platforms = platforms.unix;
    maintainers = with maintainers; [ pSub ];
  };
}