aboutsummaryrefslogtreecommitdiff
path: root/doc/images
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2018-06-06 01:13:56 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2018-06-06 06:12:19 +0200
commit15dd85f0c3b362b0a1e41afbcbaa421cb54212fa (patch)
tree6b80e00aeff21b9599d9847a963dbe957c53d6d1 /doc/images
parentfe0497528188e9720a1a0833900745e4539d3b95 (diff)
downloadguix-15dd85f0c3b362b0a1e41afbcbaa421cb54212fa.tar.gz
guix-15dd85f0c3b362b0a1e41afbcbaa421cb54212fa.zip
gnu: linkchecker: Update to 9.4.0.
* gnu/packages/web.scm (linkchecker): Update to 9.4.0. [source]: Use GIT-FETCH. [inputs]: Add python2-dnspython and python2-pyxdg. [arguments]: Remove ‘remove-python-requests-version’ phase. [license]: Remove licences of unbundled inputs.
Diffstat (limited to 'doc/images')
0 files changed, 0 insertions, 0 deletions
install"
+ (string-append "INSTALL_TOP=" out)
+ (string-append "INSTALL_MAN=" out
+ "/share/man/man1"))))))))
(home-page "https://www.lua.org/")
(synopsis "Embeddable scripting language")
(description
@@ -174,8 +174,8 @@ language.")
(lambda _
(setenv "LUA_CPATH" "src/?.so;;")
(setenv "LUA_PATH" "src/?.lua;;")
- (and (zero? (system* "lua" "tests/test.lua"))
- (zero? (system* "lua" "tests/test-lom.lua"))))))))
+ (invoke "lua" "tests/test.lua")
+ (invoke "lua" "tests/test-lom.lua"))))))
(inputs
`(("lua" ,lua-5.1)
("expat" ,expat)))
@@ -210,8 +210,8 @@ language.")
(setenv "LUA_CPATH" (string-append "src/?.so." ,version ";;"))
(setenv "LUA_PATH" "src/?.lua;;")
(when (zero? (primitive-fork))
- (system* "lua" "test/testsrvr.lua"))
- (zero? (system* "lua" "test/testclnt.lua")))))))
+ (invoke "lua" "test/testsrvr.lua"))
+ (invoke "lua" "test/testclnt.lua"))))))
(inputs
`(("lua" ,lua-5.1)))
(home-page "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/")