2013-03-15 05:41:12 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
2014-02-06 01:43:31 +01:00
|
|
|
;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
|
2014-04-01 22:59:14 +02:00
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
2014-04-16 15:12:46 +02:00
|
|
|
;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
|
2016-05-29 07:50:15 +02:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-08-22 16:44:57 +02:00
|
|
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
2016-09-01 23:53:32 +02:00
|
|
|
;;; Copyright © 2016 doncatnip <gnopap@gmail.com>
|
2016-11-11 10:43:24 +01:00
|
|
|
;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org>
|
2016-12-07 18:06:22 +01:00
|
|
|
;;; Copyright © 2016 José Miguel Sánchez García <jmi2k@openmailbox.org>
|
2013-03-15 05:41:12 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages lua)
|
2016-08-22 16:46:52 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-03-15 05:41:12 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2016-12-07 18:06:22 +01:00
|
|
|
#:use-module (guix utils)
|
2013-03-15 05:41:12 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (gnu packages)
|
2016-08-22 16:50:58 +02:00
|
|
|
#:use-module (gnu packages readline)
|
2016-08-22 21:33:13 +02:00
|
|
|
#:use-module (gnu packages tls)
|
2016-09-01 23:53:32 +02:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages libffi)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (gnu packages gtk))
|
2013-03-15 05:41:12 +01:00
|
|
|
|
|
|
|
(define-public lua
|
|
|
|
(package
|
|
|
|
(name "lua")
|
2017-02-09 14:59:11 +01:00
|
|
|
(version "5.3.4")
|
2013-03-15 05:41:12 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-10-31 14:02:59 +01:00
|
|
|
(uri (string-append "https://www.lua.org/ftp/lua-"
|
2013-03-15 05:41:12 +01:00
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
2017-02-09 14:59:11 +01:00
|
|
|
(base32 "0320a8dg3aci4hxla380dx1ifkw8gj4gbw5c4dz41g1kh98sm0gn"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "lua-pkgconfig.patch"
|
2016-10-31 14:02:59 +01:00
|
|
|
"lua-liblua-so.patch"))))
|
2013-03-15 05:41:12 +01:00
|
|
|
(build-system gnu-build-system)
|
gnu: Fix misplaced commas (unquote).
Fix many occurrences of comma (unquote) being placed immediately after the
previous list item, e.g. ("ncurses", ncurses) in the inputs.
* gnu/packages/base.scm (patch, gnu-make),
gnu/packages/bioinformatics.scm (hmmer),
gnu/packages/bittorrent.scm (aria2),
gnu/packages/compression.scm (pbzip2),
gnu/packages/databases.scm (recutils),
gnu/packages/fonts.scm (font-terminus),
gnu/packages/freedesktop.scm (xdg-utils, elogind),
gnu/packages/games.scm (gnujump),
gnu/packages/gnome.scm (libidl, gnumeric, eog, gedit),
gnu/packages/gnunet.scm (gnunet),
gnu/packages/gnuzilla.scm (mozjs, nspr),
gnu/packages/gtk.scm (gtksourceview, gdk-pixbuf),
gnu/packages/lua.scm (lua),
gnu/packages/openstack.scm (python-swiftclient),
gnu/packages/perl.scm (perl-json-any),
gnu/packages/polkit.scm (polkit-qt),
gnu/packages/python.scm (wrap-python3, python-oauthlib)
(python-mccabe-0.2.1, python-contextlib2, python2-rauth),
gnu/packages/qt.scm (qtkeychain),
gnu/packages/ruby.scm (ruby-nokogiri),
gnu/packages/screen.scm (screen),
gnu/packages/ssh.scm (libssh),
gnu/packages/video.scm (ffmpeg, mplayer),
gnu/packages/vim.scm (vim),
gnu/packages/xdisorg.scm (redshift),
gnu/packages/xfce.scm (xfce4-panel, xfce4-settings),
gnu/packages/xnee.scm (xnee),
gnu/packages/xorg.scm (font-adobe100dpi, font-adobe75dpi),
gnu/packages/zsh.scm (zsh): Fix misplaced commas (unquote).
2016-02-27 14:37:28 +01:00
|
|
|
(inputs `(("readline" ,readline)))
|
2013-03-15 05:41:12 +01:00
|
|
|
(arguments
|
|
|
|
'(#:modules ((guix build gnu-build-system)
|
2016-08-22 16:44:57 +02:00
|
|
|
(guix build utils)
|
|
|
|
(srfi srfi-1))
|
2013-03-15 05:41:12 +01:00
|
|
|
#:test-target "test"
|
2016-08-22 16:44:57 +02:00
|
|
|
#:make-flags
|
2016-09-01 23:08:28 +02:00
|
|
|
'("MYCFLAGS=-fPIC -DLUA_DL_DLOPEN"
|
2016-08-22 16:44:57 +02:00
|
|
|
"linux")
|
2016-05-29 07:56:07 +02:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(zero? (system* "make" "install"
|
|
|
|
(string-append "INSTALL_TOP=" out)
|
|
|
|
(string-append "INSTALL_MAN=" out
|
|
|
|
"/share/man/man1")))))))))
|
2016-10-31 14:02:59 +01:00
|
|
|
(home-page "https://www.lua.org/")
|
2014-09-13 15:50:30 +02:00
|
|
|
(synopsis "Embeddable scripting language")
|
2013-03-15 05:41:12 +01:00
|
|
|
(description
|
|
|
|
"Lua is a powerful, fast, lightweight, embeddable scripting language. Lua
|
|
|
|
combines simple procedural syntax with powerful data description constructs
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 06:46:59 +02:00
|
|
|
based on associative arrays and extensible semantics. Lua is dynamically typed,
|
2013-03-15 05:41:12 +01:00
|
|
|
runs by interpreting bytecode for a register-based virtual machine, and has
|
|
|
|
automatic memory management with incremental garbage collection, making it ideal
|
|
|
|
for configuration, scripting, and rapid prototyping.")
|
2016-08-22 16:46:52 +02:00
|
|
|
(license license:x11)))
|
2014-02-06 01:43:31 +01:00
|
|
|
|
2016-10-31 14:02:59 +01:00
|
|
|
(define-public lua-5.2
|
|
|
|
(package (inherit lua)
|
|
|
|
(version "5.2.4")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://www.lua.org/ftp/lua-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "0jwznq0l8qg9wh5grwg07b5cy3lzngvl5m2nl1ikp6vqssmf9qmr"))
|
|
|
|
(patches (search-patches "lua-pkgconfig.patch"
|
|
|
|
"lua-liblua-so.patch"))))))
|
|
|
|
|
2014-04-16 15:31:24 +02:00
|
|
|
(define-public lua-5.1
|
|
|
|
(package (inherit lua)
|
|
|
|
(version "5.1.5")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-10-31 14:02:59 +01:00
|
|
|
(uri (string-append "https://www.lua.org/ftp/lua-"
|
2014-04-16 15:31:24 +02:00
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
2014-09-11 03:12:39 +02:00
|
|
|
(base32 "0cskd4w0g6rdm2q8q3i4n1h3j8kylhs3rq8mxwl9vwlmlxbgqh16"))
|
2016-05-29 07:50:15 +02:00
|
|
|
(patches (search-patches "lua51-liblua-so.patch"
|
2016-08-16 20:05:12 +02:00
|
|
|
"lua-CVE-2014-5461.patch"
|
|
|
|
"lua51-pkgconfig.patch"))))))
|
2014-04-16 15:31:24 +02:00
|
|
|
|
2014-02-06 01:43:31 +01:00
|
|
|
(define-public luajit
|
|
|
|
(package
|
|
|
|
(name "luajit")
|
2016-05-29 08:12:47 +02:00
|
|
|
(version "2.0.4")
|
2014-02-06 01:43:31 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://luajit.org/download/LuaJIT-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
2016-05-29 08:12:47 +02:00
|
|
|
(base32 "0zc0y7p6nx1c0pp4nhgbdgjljpfxsb5kgwp4ysz22l1p2bms83v2"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "luajit-symlinks.patch"
|
|
|
|
"luajit-no_ldconfig.patch"))))
|
2014-02-06 01:43:31 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f ;luajit is distributed without tests
|
|
|
|
#:phases (alist-delete 'configure %standard-phases)
|
|
|
|
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))))
|
|
|
|
(home-page "http://www.luajit.org/")
|
|
|
|
(synopsis "Just in time compiler for Lua programming language version 5.1")
|
|
|
|
(description
|
|
|
|
"LuaJIT is a Just-In-Time Compiler (JIT) for the Lua
|
|
|
|
programming language. Lua is a powerful, dynamic and light-weight programming
|
|
|
|
language. It may be embedded or used as a general-purpose, stand-alone
|
|
|
|
language.")
|
2016-08-22 16:46:52 +02:00
|
|
|
(license license:x11)))
|
2016-08-22 16:50:58 +02:00
|
|
|
|
|
|
|
(define-public lua5.1-expat
|
|
|
|
(package
|
|
|
|
(name "lua5.1-expat")
|
|
|
|
(version "1.3.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://matthewwild.co.uk/projects/"
|
|
|
|
"luaexpat/luaexpat-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1hvxqngn0wf5642i5p3vcyhg3pmp102k63s9ry4jqyyqc1wkjq6h"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list "CC=gcc"
|
|
|
|
(string-append "LUA_LDIR=" out "/share/lua/$(LUA_V)")
|
|
|
|
(string-append "LUA_CDIR=" out "/lib/lua/$(LUA_V)")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(replace 'check
|
|
|
|
(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"))))))))
|
|
|
|
(inputs
|
|
|
|
`(("lua" ,lua-5.1)
|
|
|
|
("expat" ,expat)))
|
|
|
|
(home-page "http://matthewwild.co.uk/projects/luaexpat/")
|
|
|
|
(synopsis "SAX XML parser based on the Expat library")
|
|
|
|
(description "LuaExpat is a SAX XML parser based on the Expat library.")
|
|
|
|
(license (package-license lua-5.1))))
|
2016-08-22 21:32:09 +02:00
|
|
|
|
|
|
|
(define-public lua5.1-socket
|
|
|
|
(package
|
|
|
|
(name "lua5.1-socket")
|
|
|
|
(version "2.0.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://files.luaforge.net/releases/"
|
|
|
|
"luasocket/luasocket/luasocket-"
|
|
|
|
version "/luasocket-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"19ichkbc4rxv00ggz8gyf29jibvc2wq9pqjik0ll326rrxswgnag"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list (string-append "INSTALL_TOP_SHARE=" out "/share/lua/5.1")
|
|
|
|
(string-append "INSTALL_TOP_LIB=" out "/lib/lua/5.1")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
|
|
|
(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")))))))
|
|
|
|
(inputs
|
|
|
|
`(("lua" ,lua-5.1)))
|
|
|
|
(home-page "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/")
|
|
|
|
(synopsis "Socket library for Lua")
|
|
|
|
(description "LuaSocket is a Lua extension library that is composed by two
|
|
|
|
parts: a C core that provides support for the TCP and UDP transport layers,
|
|
|
|
and a set of Lua modules that add support for functionality commonly needed by
|
|
|
|
applications that deal with the Internet.
|
|
|
|
|
|
|
|
Among the supported modules, the most commonly used implement the
|
|
|
|
SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and downloading
|
|
|
|
files) client protocols. These provide a very natural and generic interface
|
|
|
|
to the functionality defined by each protocol. In addition, you will find
|
|
|
|
that the MIME (common encodings), URL (anything you could possible want to do
|
|
|
|
with one) and LTN12 (filters, sinks, sources and pumps) modules can be very
|
|
|
|
handy.")
|
|
|
|
(license (package-license lua-5.1))))
|
2016-08-22 21:32:42 +02:00
|
|
|
|
|
|
|
(define-public lua5.1-filesystem
|
|
|
|
(package
|
|
|
|
(name "lua5.1-filesystem")
|
|
|
|
(version "1.6.3")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/keplerproject/"
|
|
|
|
"luafilesystem/archive/v_"
|
|
|
|
"1_6_3" ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0s10ckxin0bysd6gaywqhxkpw3ybjhprr8m655b8cx3pxjwd49am"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
#:test-target "test"
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
|
|
|
(inputs
|
|
|
|
`(("lua" ,lua-5.1)))
|
|
|
|
(home-page "https://keplerproject.github.io/luafilesystem/index.html")
|
|
|
|
(synopsis "File system library for Lua")
|
|
|
|
(description "LuaFileSystem is a Lua library developed to complement the
|
|
|
|
set of functions related to file systems offered by the standard Lua
|
|
|
|
distribution. LuaFileSystem offers a portable way to access the underlying
|
|
|
|
directory structure and file attributes.")
|
|
|
|
(license (package-license lua-5.1))))
|
2016-08-22 21:33:13 +02:00
|
|
|
|
|
|
|
(define-public lua5.1-sec
|
|
|
|
(package
|
|
|
|
(name "lua5.1-sec")
|
|
|
|
(version "0.6")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/brunoos/luasec/archive/"
|
|
|
|
"luasec-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0pgd1anzznl4s0h16wg8dlw9mgdb9h52drlcki6sbf5y31fa7wyf"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(list "linux"
|
|
|
|
"CC=gcc"
|
|
|
|
"LD=gcc"
|
|
|
|
(string-append "LUAPATH=" out "/share/lua/5.1")
|
|
|
|
(string-append "LUACPATH=" out "/lib/lua/5.1")))
|
|
|
|
#:tests? #f ; no tests included
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
|
|
|
(inputs
|
|
|
|
`(("lua" ,lua-5.1)
|
|
|
|
("openssl" ,openssl)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("lua-socket" ,lua5.1-socket)))
|
|
|
|
(home-page "https://github.com/brunoos/luasec/wiki")
|
|
|
|
(synopsis "OpenSSL bindings for Lua")
|
|
|
|
(description "LuaSec is a binding for OpenSSL library to provide TLS/SSL
|
|
|
|
communication. It takes an already established TCP connection and creates a
|
|
|
|
secure session between the peers.")
|
|
|
|
(license (package-license lua-5.1))))
|
2016-09-01 23:53:32 +02:00
|
|
|
|
2016-11-11 10:43:24 +01:00
|
|
|
(define-public lua5.1-sec-0.5
|
|
|
|
(package
|
|
|
|
(inherit lua5.1-sec)
|
|
|
|
(version "0.5.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/brunoos/luasec/archive/"
|
|
|
|
"luasec-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"01llf5bcrjmqqy6m65avqkajz7h79rvkka6rd131kwr10n75yp3d"))))))
|
|
|
|
|
2016-09-01 23:53:32 +02:00
|
|
|
(define-public lua-lgi
|
|
|
|
(package
|
|
|
|
(name "lua-lgi")
|
|
|
|
(version "0.9.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/pavouk/lgi/archive/"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1fmgdl5y4ph3yc6ycg865s3vai1rjkyda61cgqxk6zd13hmznw0c"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:make-flags (list "CC=gcc"
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure) ; no configure script
|
|
|
|
(add-before 'build 'set-env
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; we need to load cairo dynamically
|
|
|
|
(let* ((cairo (string-append
|
|
|
|
(assoc-ref inputs "cairo") "/lib" )))
|
|
|
|
(setenv "LD_LIBRARY_PATH" cairo)
|
|
|
|
#t)))
|
|
|
|
(add-before 'build 'set-lua-version
|
|
|
|
(lambda _
|
|
|
|
;; lua version and therefore install directories are hardcoded
|
|
|
|
;; FIXME: This breaks when we update lua to >=5.3
|
|
|
|
(substitute* "./lgi/Makefile"
|
|
|
|
(("LUA_VERSION=5.1") "LUA_VERSION=5.2"))
|
|
|
|
#t))
|
|
|
|
(add-before 'check 'skip-test-gtk
|
|
|
|
(lambda _
|
|
|
|
;; FIXME: Skip GTK tests:
|
|
|
|
;; gtk3 - can't get it to run with the xorg-server config below
|
|
|
|
;; and some non-gtk tests will also fail
|
|
|
|
;; gtk2 - lots of functions aren't implemented
|
|
|
|
;; We choose gtk2 as the lesser evil and simply skip the test.
|
|
|
|
;; Currently, awesome is the only package that uses lua-lgi but
|
|
|
|
;; it doesn't need or interact with GTK using lua-lgi.
|
|
|
|
(substitute* "./tests/test.lua"
|
|
|
|
(("'gtk.lua',") "-- 'gtk.lua',"))
|
|
|
|
#t))
|
|
|
|
(add-before 'check 'start-xserver-instance
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; There must be a running X server during tests.
|
|
|
|
(system (format #f "~a/bin/Xvfb :1 &"
|
|
|
|
(assoc-ref inputs "xorg-server")))
|
|
|
|
(setenv "DISPLAY" ":1")
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("gobject-introspection" ,gobject-introspection)
|
|
|
|
("glib" ,glib)
|
|
|
|
("pango", pango)
|
|
|
|
("gtk", gtk+-2)
|
|
|
|
("lua" ,lua)
|
|
|
|
("cairo" ,cairo)
|
|
|
|
("libffi" ,libffi)
|
|
|
|
("xorg-server", xorg-server)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "https://github.com/pavouk/lgi/")
|
|
|
|
(synopsis "Lua bridge to GObject based libraries")
|
|
|
|
(description
|
|
|
|
"LGI is gobject-introspection based dynamic Lua binding to GObject
|
|
|
|
based libraries. It allows using GObject-based libraries directly from Lua.
|
|
|
|
Notable examples are GTK+, GStreamer and Webkit.")
|
|
|
|
(license license:expat)))
|
2016-12-07 18:06:22 +01:00
|
|
|
|
|
|
|
(define-public lua-lpeg
|
|
|
|
(package
|
|
|
|
(name "lua-lpeg")
|
2017-01-15 00:03:33 +01:00
|
|
|
(version "1.0.1")
|
2016-12-07 18:06:22 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
2017-01-15 00:03:33 +01:00
|
|
|
(base32 "0sq25z3r324a324ky73izgq9mbf66j2xvjp0fxf227rwxalzgnb2"))))
|
2016-12-07 18:06:22 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
;; `make install` isn't available, so we have to do it manually
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(lua-version ,(version-major+minor (package-version lua))))
|
|
|
|
(install-file "lpeg.so"
|
|
|
|
(string-append out "/lib/lua/" lua-version))
|
|
|
|
(install-file "re.lua"
|
|
|
|
(string-append out "/share/lua/" lua-version))
|
|
|
|
#t))))
|
|
|
|
#:test-target "test"))
|
|
|
|
(inputs `(("lua", lua)))
|
|
|
|
(synopsis "Pattern-matching library for Lua")
|
|
|
|
(description
|
|
|
|
"LPeg is a pattern-matching library for Lua, based on Parsing Expression
|
|
|
|
Grammars (PEGs).")
|
|
|
|
(home-page "http://www.inf.puc-rio.br/~roberto/lpeg")
|
|
|
|
(license license:expat)))
|
2017-01-24 15:40:13 +01:00
|
|
|
|
2017-01-24 15:40:14 +01:00
|
|
|
(define-public lua5.2-lpeg
|
|
|
|
(package (inherit lua-lpeg)
|
|
|
|
(name "lua5.2-lpeg")
|
|
|
|
;; XXX: The arguments field is almost an exact copy of the field in
|
|
|
|
;; "lua-lpeg", except for the version string, which was derived from "lua"
|
|
|
|
;; and now is taken from "lua-5.2". See this discussion for context:
|
|
|
|
;; http://lists.gnu.org/archive/html/guix-devel/2017-01/msg02048.html
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
;; `make install` isn't available, so we have to do it manually
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(lua-version ,(version-major+minor (package-version lua-5.2))))
|
|
|
|
(install-file "lpeg.so"
|
|
|
|
(string-append out "/lib/lua/" lua-version))
|
|
|
|
(install-file "re.lua"
|
|
|
|
(string-append out "/share/lua/" lua-version))
|
|
|
|
#t))))
|
|
|
|
#:test-target "test"))
|
|
|
|
(inputs `(("lua", lua-5.2)))))
|
|
|
|
|
2017-01-24 15:40:13 +01:00
|
|
|
;; Lua 5.3 is not supported.
|
|
|
|
(define-public lua5.2-bitop
|
|
|
|
(package
|
|
|
|
(name "lua5.2-bitop")
|
|
|
|
(version "1.0.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://bitop.luajit.org/download/"
|
|
|
|
"LuaBitOp-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"16fffbrgfcw40kskh2bn9q7m3gajffwd2f35rafynlnd7llwj1qj"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "test"
|
|
|
|
#:make-flags
|
|
|
|
(list "INSTALL=install -pD"
|
|
|
|
(string-append "INSTALLPATH=printf "
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/lua/"
|
|
|
|
,(version-major+minor (package-version lua-5.2))
|
|
|
|
"/bit/bit.so"))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
|
|
|
(inputs `(("lua", lua-5.2)))
|
|
|
|
(home-page "http://bitop.luajit.org/index.html")
|
|
|
|
(synopsis "Bitwise operations on numbers for Lua")
|
|
|
|
(description
|
|
|
|
"Lua BitOp is a C extension module for Lua which adds bitwise operations
|
|
|
|
on numbers.")
|
|
|
|
(license license:expat)))
|