gnu: ghc@8.6: Add missing 'native-search-paths'.

Fixes <https://bugs.gnu.org/37064>.

* gnu/packages/haskell.scm (ghc-8.6)[native-search-paths]: Set search
paths explicitly instead of inheriting them.
This commit is contained in:
Timothy Sample 2019-09-09 21:12:41 -04:00
parent e9c784fba1
commit 83aa656217
No known key found for this signature in database
GPG Key ID: 2AC6A5EC1C357C59
1 changed files with 7 additions and 1 deletions

View File

@ -596,7 +596,13 @@ interactive environment for the functional language Haskell.")
(("^test\\('T8108'") "# guix skipped: test('T8108'"))
(substitute* "libraries/unix/tests/libposix/all.T"
(("^test\\('posix010'") "# guix skipped: test('posix010'"))
#t))))))))
#t))))))
(native-search-paths (list (search-path-specification
(variable "GHC_PACKAGE_PATH")
(files (list
(string-append "lib/ghc-" version)))
(file-pattern ".*\\.conf\\.d$")
(file-type 'directory))))))
(define-public ghc-8 ghc-8.4)