/usr/share/el-get/recipes/hs-mode.rcp is in el-get 3.1-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | (:name hs-mode
       :description "Haskell editing mode."
       :type git
       :url "http://github.com/chrisdone/haskell-emacs.git"
       :depends auto-complete
       :compile nil
       :load-path ("./src/")
       :features (hs-align-imports hs-cabal hs-cabal-mode hs-completion hs-config
                                   hs hs-errors hs-faces hs-indent hs-indent-test
                                   hs-interactive-mode hs-lang-en hs-macros
                                   hs-mode hs-move-nested
                                   hs-navigate-imports hs-process hs-project
                                   hs-sort-imports
                                   hs-string hs-tags hs-types hs-ui)
       :post-init (lambda ()
                    (add-to-list 'auto-mode-alist
                                 (cons "\\.hs\\'" 'hs-mode))
                    (add-to-list 'auto-mode-alist
                                 (cons "\\.cabal\\'" 'hs-cabal-mode)))
       )
 |