gnu: ghc-alex: Update to 3.2.4.

* gnu/packages/haskell.scm (ghc-alex): Update to 3.2.4.
[arguments]: Add a phase to set environment variables for tests.
[native-inputs]: Add which.
This commit is contained in:
Timothy Sample 2018-08-28 22:19:15 -04:00 committed by Ricardo Wurmus
parent 0588525b06
commit 7de7ec7d45
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -994,7 +994,7 @@ (define-public ghc-haskell-src
(define-public ghc-alex (define-public ghc-alex
(package (package
(name "ghc-alex") (name "ghc-alex")
(version "3.2.3") (version "3.2.4")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -1004,9 +1004,20 @@ (define-public ghc-alex
".tar.gz")) ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0bi1cs9b8ir33h1fl6x2xw4ymygapqbr713ridpf7rmk2wa7jqqs")))) "0cpjixgsr0b2x4s6hz4aa6gnmjw9i7xd9nlfi8m37zqlidq4v3nm"))))
(build-system haskell-build-system) (build-system haskell-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'set-check-variables
(lambda _
(setenv "PATH" (string-append (getcwd) "/dist/build/alex:"
(getenv "PATH")))
(setenv "alex_datadir" (string-append (getcwd) "/data"))
#t)))))
(inputs `(("ghc-quickcheck" ,ghc-quickcheck))) (inputs `(("ghc-quickcheck" ,ghc-quickcheck)))
(native-inputs
`(("which" ,which)))
(home-page "https://www.haskell.org/alex/") (home-page "https://www.haskell.org/alex/")
(synopsis (synopsis
"Tool for generating lexical analysers in Haskell") "Tool for generating lexical analysers in Haskell")