mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: lua5.1-socket: Use invoke.
* gnu/packages/lua.scm (lua5.1-socket)[arguments]: Use invoke in the custom check phase.
This commit is contained in:
parent
12a1660280
commit
6e3fc9bac6
1 changed files with 2 additions and 2 deletions
|
@ -210,8 +210,8 @@ language.")
|
||||||
(setenv "LUA_CPATH" (string-append "src/?.so." ,version ";;"))
|
(setenv "LUA_CPATH" (string-append "src/?.so." ,version ";;"))
|
||||||
(setenv "LUA_PATH" "src/?.lua;;")
|
(setenv "LUA_PATH" "src/?.lua;;")
|
||||||
(when (zero? (primitive-fork))
|
(when (zero? (primitive-fork))
|
||||||
(system* "lua" "test/testsrvr.lua"))
|
(invoke "lua" "test/testsrvr.lua"))
|
||||||
(zero? (system* "lua" "test/testclnt.lua")))))))
|
(invoke "lua" "test/testclnt.lua"))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lua" ,lua-5.1)))
|
`(("lua" ,lua-5.1)))
|
||||||
(home-page "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/")
|
(home-page "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue