-
Notifications
You must be signed in to change notification settings - Fork 2
/
vado.cabal
57 lines (51 loc) · 2.1 KB
/
vado.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
cabal-version: 3.0
name: vado
version: 0.0.14
build-type: Simple
license: MIT
license-file: LICENSE
maintainer: Hamish Mackenzie <[email protected]>
homepage: https://github.com/hamishmack/vado
package-url: https://github.com/hamishmack/vado
synopsis: Runs commands on remote machines using ssh
description: Lets you quickly run ssh on a machine that you have an sshfs connection to.
It works out the username, host and the directory on the host based on the current directory and the output of 'mount'.
category: Development
author: Hamish Mackenzie
Source-Repository head
type: git
location: https://github.com/hamishmack/vado.git
library
build-depends: base >=4.0.0.0 && <4.17, attoparsec >=0.10.4.0 && <0.15,
directory >=1.1.0.0 && <1.4, filepath >=1.2.0.0 && <1.5,
process >=1.0.1.5 && <1.7, text >=0.11.3.1 && <2.1
exposed-modules: System.Process.Vado
exposed: True
buildable: True
hs-source-dirs: src
default-language: Haskell2010
executable vado
build-depends: base >=4.0.0.0 && <4.17, attoparsec >=0.10.4.0 && <0.15,
directory >=1.1.0.0 && <1.4, filepath >=1.2.0.0 && <1.5,
process >=1.0.1.5 && <1.7, text >=0.11.3.1 && <2.1, vado
main-is: Main.hs
buildable: True
hs-source-dirs: exe-src
default-language: Haskell2010
executable vamount
build-depends: base >=4.0.0.0 && <4.17, attoparsec >=0.10.4.0 && <0.15,
directory >=1.1.0.0 && <1.4, filepath >=1.2.0.0 && <1.5,
process >=1.0.1.5 && <1.7, text >=0.11.3.1 && <2.1, vado
main-is: Vamount.hs
buildable: True
hs-source-dirs: exe-src
default-language: Haskell2010
test-suite test-vado
build-depends: base >=4.0.0.0 && <4.17, QuickCheck -any, attoparsec >=0.10.4.0 && <0.15,
directory >=1.1.0.0 && <1.4, filepath >=1.2.0.0 && <1.5,
process >=1.0.1.5 && <1.7, text >=0.11.3.1 && <2.1, vado
type: exitcode-stdio-1.0
main-is: Test.hs
buildable: True
hs-source-dirs: exe-src
default-language: Haskell2010