lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

autossh: update from 1.4d to 1.4e

+7 -6
+7 -6
pkgs/tools/networking/autossh/default.nix
··· 1 1 {stdenv, fetchurl, openssh}: 2 2 3 - stdenv.mkDerivation { 4 - name = "autossh-1.4d"; 3 + stdenv.mkDerivation rec { 4 + name = "autossh-1.4e"; 5 5 6 6 src = fetchurl { 7 - url = "http://www.harding.motd.ca/autossh/autossh-1.4d.tgz"; 8 - sha256 = "05nwvqfyk0kbalwabj4z3xx11i0qdqg6xadzk17ckr5xb3j8y000"; 7 + url = "http://www.harding.motd.ca/autossh/${name}.tgz"; 8 + sha256 = "0mlicw28vq2jxa0jf0dys5ja75v0fxpjavlq9dpif6bnknji13ly"; 9 9 }; 10 10 11 11 buildInputs = [ openssh ]; ··· 20 20 install -D -m644 autossh.1 $out/man/man1/autossh.1 || return 1 21 21 ''; 22 22 23 - meta = { 23 + meta = with stdenv.lib; { 24 24 homepage = http://www.harding.motd.ca/autossh/; 25 25 description = "Automatically restart SSH sessions and tunnels"; 26 - platforms = stdenv.lib.platforms.linux; 26 + platforms = platforms.linux; 27 + maintainers = with maintainers; [ pSub ]; 27 28 }; 28 29 }