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
|
module ERToolsPackageConfig where
packageVersion :: String
packageVersion = "3.0.0"
getPackagePath :: IO String
getPackagePath = return "/net/medoc/home/cpm/tmpcurrydoc2105159/spicey/.cpm/packages/ertools-3.0.0"
packagePath :: String
packagePath = "/net/medoc/home/cpm/tmpcurrydoc2105159/spicey/.cpm/packages/ertools-3.0.0"
getPackageLoadPath :: IO [String]
getPackageLoadPath = do
pp <- getPackagePath
return ["."]
packageLoadPath :: String
packageLoadPath = ""
getPackageExecutable :: IO String
getPackageExecutable = return "/net/medoc/home/cpm/.cpm/bin_pakcs/erd2curry"
packageExecutable :: String
packageExecutable = "/net/medoc/home/cpm/.cpm/bin_pakcs/erd2curry"
|