Skip to content
Snippets Groups Projects
Commit 1574a0fd authored by Holger Levsen's avatar Holger Levsen
Browse files

chroot-installs: only install haskell-platform on bullseye

parent 29da0a91
No related branches found
No related tags found
No related merge requests found
......@@ -248,7 +248,11 @@ if [ "$2" != "" ] ; then
;;
full_desktop) install_packages full_desktop $FULL_DESKTOP
;;
haskell) install_packages haskell 'haskell-platform.*' 'libghc-.*'
haskell) if [ "$DISTRO" = "bullseye" ] ; then
install_packages haskell 'haskell-platform.*' 'libghc-.*'
else
install_packages haskell 'libghc-.*'
fi
;;
developer) install_build_depends developer $FULL_DESKTOP
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment