gnu: ghc-hslua: Update to 1.3.0.2.
* gnu/packages/haskell-xyz.scm (ghc-hslua): Update to 1.3.0.2. [inputs]: Remove ghc-exceptions and ghc-fail; add ghc-base-compat. [native-inputs]: Remove ghc-tasty-expected-failure; add ghc-fail and ghc-semigroups.
This commit is contained in:
parent
c62fdba44d
commit
f4f5fca49c
1 changed files with 6 additions and 6 deletions
|
@ -6197,29 +6197,29 @@ handler built in.")
|
||||||
(define-public ghc-hslua
|
(define-public ghc-hslua
|
||||||
(package
|
(package
|
||||||
(name "ghc-hslua")
|
(name "ghc-hslua")
|
||||||
(version "1.3.0.1")
|
(version "1.3.0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://hackage.haskell.org/package/"
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
"hslua/hslua-" version ".tar.gz"))
|
"hslua/hslua-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mz8zk13dhgaf24hmmjqnn5hcln96iw73mcjwjilag8388wq72k7"))))
|
"0p39xm0mmxzs5x6aim11qkb7npn0d9h7li2kwfhry0dijd1vm18i"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-fsystem-lua")
|
`(#:configure-flags '("-fsystem-lua")
|
||||||
#:extra-directories ("lua")))
|
#:extra-directories ("lua")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lua" ,lua)
|
`(("lua" ,lua)
|
||||||
("ghc-exceptions" ,ghc-exceptions)
|
("ghc-base-compat" ,ghc-base-compat)))
|
||||||
("ghc-fail" ,ghc-fail)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ghc-tasty" ,ghc-tasty)
|
`(("ghc-tasty" ,ghc-tasty)
|
||||||
("ghc-tasty-expected-failure" ,ghc-tasty-expected-failure)
|
|
||||||
("ghc-tasty-hunit" ,ghc-tasty-hunit)
|
("ghc-tasty-hunit" ,ghc-tasty-hunit)
|
||||||
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)
|
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)
|
||||||
("ghc-quickcheck" ,ghc-quickcheck)
|
("ghc-quickcheck" ,ghc-quickcheck)
|
||||||
("ghc-quickcheck-instances" ,ghc-quickcheck-instances)))
|
("ghc-quickcheck-instances" ,ghc-quickcheck-instances)
|
||||||
|
("ghc-fail" ,ghc-fail)
|
||||||
|
("ghc-semigroups" ,ghc-semigroups)))
|
||||||
(home-page "https://hackage.haskell.org/package/hslua")
|
(home-page "https://hackage.haskell.org/package/hslua")
|
||||||
(synopsis "Lua language interpreter embedding in Haskell")
|
(synopsis "Lua language interpreter embedding in Haskell")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue