Sandbox ssh and rsync

Otherwise we get a ssh version missmatch on Ubuntu Xenial.  ssh and scp
pick up the openssl library from the packaged Python.  Which is really
old and doesn't work with host versions of rsync and ssh.

Change-Id: Id881b602a236b2ac2cc405a6a48fe4215e2f9c7a
diff --git a/WORKSPACE b/WORKSPACE
index 4dc3f78..961cc40 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -15,6 +15,14 @@
     patch_debs = "files",
 )
 load(
+    "//debian:rsync.bzl",
+    rsync_debs = "files",
+)
+load(
+    "//debian:ssh.bzl",
+    ssh_debs = "files",
+)
+load(
     "//debian:pandoc.bzl",
     pandoc_debs = "files",
 )
@@ -52,6 +60,10 @@
 
 generate_repositories_for_debs(clang_debs)
 
+generate_repositories_for_debs(rsync_debs)
+
+generate_repositories_for_debs(ssh_debs)
+
 generate_repositories_for_debs(patch_debs)
 
 generate_repositories_for_debs(pandoc_debs)
@@ -222,6 +234,20 @@
 )
 
 http_archive(
+    name = "rsync",
+    build_file = "@//debian:rsync.BUILD",
+    sha256 = "53be65a9214aaa6d1b9176f135184fb4a78ccefd58f95ce0da37e6a392dfeb60",
+    url = "http://www.frc971.org/Build-Dependencies/rsync.tar.gz",
+)
+
+http_archive(
+    name = "ssh",
+    build_file = "@//debian:ssh.BUILD",
+    sha256 = "43c760bc5c32d5a8c24837d1b4c356424a157f59ff8a08654651856ae90b16d2",
+    url = "http://www.frc971.org/Build-Dependencies/ssh.tar.gz",
+)
+
+http_archive(
     name = "pandoc",
     build_file = "@//debian:pandoc.BUILD",
     sha256 = "9f7a7adb3974a1f14715054c349ff3edc2909e920dbe3438fca437a83845f3c4",