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:
parent
e9c784fba1
commit
83aa656217
|
@ -596,7 +596,13 @@ interactive environment for the functional language Haskell.")
|
||||||
(("^test\\('T8108'") "# guix skipped: test('T8108'"))
|
(("^test\\('T8108'") "# guix skipped: test('T8108'"))
|
||||||
(substitute* "libraries/unix/tests/libposix/all.T"
|
(substitute* "libraries/unix/tests/libposix/all.T"
|
||||||
(("^test\\('posix010'") "# guix skipped: test('posix010'"))
|
(("^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)
|
(define-public ghc-8 ghc-8.4)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue