How to list all the installed packages and their version with Cabal?

cabal, haskell

Solution

We can simply do:

cabal list --installed

Problem

Is there a simple command / option that lets you do that? I could use `grep` but I wonder if there is a builtin option?

Original source