module DevenvBuild module Provisioning class Haskell < Base def help 'Install the Haskell programming language and tools.' end def middle 'curl -sSL https://get.haskellstack.org/ | sh' end end end end