You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

62 lines
1.8 KiB

  1. # Cache downloads in ~/.ghcup/cache
  2. cache: False
  3. # Skip tarball checksum verification
  4. no-verify: False
  5. # enable verbosity
  6. verbose: False
  7. # When to keep build directories
  8. keep-dirs: Errors # Always | Never | Errors
  9. # Which downloader to use
  10. downloader: Curl # Curl | Wget | Internal
  11. # TUI key bindings,
  12. # see https://hackage.haskell.org/package/vty-5.31/docs/Graphics-Vty-Input-Events.html#t:Key
  13. # for possible values.
  14. key-bindings:
  15. up:
  16. KUp: []
  17. down:
  18. KDown: []
  19. quit:
  20. KChar: 'q'
  21. install:
  22. KChar: 'i'
  23. uninstall:
  24. KChar: 'u'
  25. set:
  26. KChar: 's'
  27. changelog:
  28. KChar: 'c'
  29. show-all:
  30. KChar: 'a'
  31. # Where to get GHC/cabal/hls download info/versions from. For more detailed explanation
  32. # check the 'URLSource' type in the code.
  33. url-source:
  34. ## Use the internal download uri, this is the default
  35. GHCupURL: []
  36. ## Example 1: Read download info from this location instead
  37. ## Accepts file/http/https scheme
  38. # OwnSource: "file:///home/jule/git/ghcup-hs/ghcup-0.0.3.yaml"
  39. ## Example 2: Add custom tarballs to the default downloads, overwriting duplicate versions
  40. # AddSource:
  41. # Left:
  42. # toolRequirements: {} # this is ignored
  43. # ghcupDownloads:
  44. # GHC:
  45. # 9.10.2:
  46. # viTags: []
  47. # viArch:
  48. # A_64:
  49. # Linux_UnknownLinux:
  50. # unknown_versioning:
  51. # dlUri: https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3-x86_64-deb8-linux.tar.bz2
  52. # dlSubdir: ghc-7.10.3
  53. # dlHash: 01cfbad8dff1e8b34a5fdca8caeaf843b56e36af919e29cd68870d2588563db5
  54. ## Example 3: Add a custom download file to the default downloads, overwriting duplicate versions
  55. # AddSource:
  56. # Right: "file:///home/jule/git/ghcup-hs/ghcup-custom.yaml"