packages feed

podenv-0.1.0: hub/Applications/ssh.dhall

let Podenv = ../Podenv.dhall

let client =
      \(host : Text) ->
        Podenv.Application::{
        , description = Some "OpenSSH client"
        , runtime = (./fedora.dhall).latest.use [ "openssh-clients" ]
        , command = [ "ssh", host ]
        , capabilities = Podenv.Capabilities::{
          , ssh = True
          , network = True
          , terminal = True
          , interactive = True
          }
        }

in  { client }