Hi, Recently I had faced an issue during our Emacs hackathon, where I wanted to remove the haskell packages.
however, even though I could see that pacman wanted to update the haskell packages, when I issued the command: pacman --remove haskell it did nothing. Then searched on Archlinux forum if I could find anything, here's a blog post that helped me get rid of the many haskell packages: https://bbs.archlinux.org/viewtopic.php?id=259098 commands discussed in the blog are: $ pacman -Qes |grep -i haskell This is to check what had got installed. The second command is: $ pacman -Qes | grep -i haskell | pacman -Rsn - If you do not want any of haskell libraries use this command to remove all of them. Hope this helps! Warm regards Ragini