I need for example a minor version of a package, for example persistent-postgresql .. or hdbc-mysql or whatever.
If I run
cabal install persistent-postgresql
it will install persistent-postgresql version 1.3 and then I get the error 'At least the following dependencies are missing: persistent-postgresql >= 1.2 && < 1.3' That's why I would like to install an earlier version of this package to make it work. Or maybe there is another solution?
Thanks in advance.
cabal --help, or more specificallycabal install --help. In this case, you wouldn't even have had to scan through all the options, because the short 'Examples' section at the end shows how to install a specific version. - raymonad