Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Sep 12, 2022
  2. Aug 28, 2022
    • Artem Pelenitsyn's avatar
      facelift for README · 450e78e5
      Artem Pelenitsyn authored and andreas.abel's avatar andreas.abel committed
      - add cabal-install-solver to the list of main packages in the repo
      
      - turn ways to install cabal-install into a list instead of a sequence of headers
      
      - add GHCup as the preferred option for getting cabal
      
      - add a reference to CONTRIBUTING.md
      450e78e5
  3. May 17, 2022
  4. Mar 06, 2022
  5. Jan 26, 2022
  6. Jan 20, 2022
  7. Sep 29, 2021
  8. Sep 28, 2021
  9. Aug 31, 2021
  10. Aug 30, 2021
  11. Dec 28, 2020
  12. Apr 12, 2019
  13. Nov 24, 2018
  14. Feb 16, 2018
  15. Nov 17, 2017
  16. Oct 26, 2017
    • Herbert Valerio Riedel's avatar
      Relax coding guideline regarding module imports · d291bd1c
      Herbert Valerio Riedel authored
      I notice imports like
      
          import qualified Text.PrettyPrint as Disp
                ( Doc, render, char, text )
      
      which seem overly precise to me, when `Disp.` is only used
      locally as a module prefix, and there's no other imports sharing
      the same module prefix.
      
      Instead, it should suffice to either use
      
          import qualified Text.PrettyPrint as Disp
      
      or
      
          import Text.PrettyPrint
                ( Doc, render, char, text )
      
      or in rare cases even
      
          import Text.PrettyPrint as Disp
                ( Doc, render, char, text )
      
      Hence this relaxes the coding guidelines to allow these simpler forms
      to be used.
      
      [skip ci]
      d291bd1c
  17. Oct 20, 2017
    • Moritz Angermann's avatar
      Add note regarding bootstrap to the main README.md · 68b6f6d3
      Moritz Angermann authored
      I've been failing to find this information a few times already. And I still remember not being able to find it the first time, without searching for quite a while. I hope this adds clarity to installing Cabal without cabal, and those who end up with just an unpacked ghc an no cabal to use.
      68b6f6d3
  18. Jul 05, 2017
  19. May 07, 2017
  20. Mar 07, 2017
  21. Mar 06, 2017
  22. Jan 22, 2017
  23. Jan 13, 2017
  24. Dec 07, 2016
  25. Oct 31, 2016
  26. Sep 16, 2016
  27. Sep 06, 2016
  28. Sep 04, 2016
  29. Aug 31, 2016
  30. Jul 26, 2016
  31. Jul 21, 2016
  32. Jul 17, 2016
  33. Jul 16, 2016
  34. Jul 15, 2016
Loading