3
0
Fork 0
forked from mirrors/nixpkgs

added autossh 1.4b.

svn path=/nixpkgs/trunk/; revision=22018
This commit is contained in:
David Guibert 2010-05-27 19:43:57 +00:00
parent c13b3f2f8a
commit 66c784d4dd
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, openssh}:
stdenv.mkDerivation {
name="autossh-1.4b";
src = fetchurl {
url = "http://www.harding.motd.ca/autossh/autossh-1.4b.tgz";
md5 = "8f9aa006f6f69e912d3c2f504622d6f7";
};
buildInputs = [ 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 = {
homepage = http://www.harding.motd.ca/autossh/;
description = "Automatically restart SSH sessions and tunnels";
};
}

View file

@ -448,6 +448,10 @@ let
inherit fetchurl stdenv python;
};
autossh = import ../tools/networking/autossh {
inherit stdenv fetchurl openssh;
};
bibtextools = import ../tools/typesetting/bibtex-tools {
inherit fetchurl stdenv aterm tetex hevea;
inherit (strategoPackages016) strategoxt sdf;