4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1.2 KiB
Nix
35 lines
1.2 KiB
Nix
{lib, 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 lib; {
|
|
homepage = "https://www.harding.motd.ca/autossh/";
|
|
description = "Automatically restart SSH sessions and tunnels";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|