3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: ghc-pandoc: Fix tests.

* gnu/packages/haskell-xyz.scm (ghc-pandoc)[arguments]: Add build phase
"find-library".
This commit is contained in:
Ricardo Wurmus 2020-08-13 13:51:35 +02:00
parent f79e4b1fcd
commit c18e4f3ec0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -8762,6 +8762,17 @@ code. It was designed for use in @code{Pandoc}.")
(base32
"0dpjrr40h54cljzhvixyym07z792a9izg6b9dmqpjlgcg4rj0xx8"))))
(build-system haskell-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'find-library
(lambda _
(substitute* "test/Tests/Command.hs"
(("= dynlibEnv")
(format #f "= [(\"LD_LIBRARY_PATH\" , \"~a/dist/build\")]"
(getcwd))))
#t)))))
(outputs '("out" "static" "doc"))
(inputs
`(("ghc-aeson" ,ghc-aeson)
("ghc-aeson-pretty" ,ghc-aeson-pretty)