aboutsummaryrefslogtreecommitdiff
# GNU Guix --- Functional package management for GNU
# Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
# Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
# Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
# Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
# Copyright © 2019 Timothy Sample <samplet@ngyro.com>
# Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
# Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
#
# 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/>.

# If adding a language, update the following variables, and info_TEXINFOS.
MANUAL_LANGUAGES = de es fr pt_BR ru zh_CN
COOKBOOK_LANGUAGES = de fr ko pt_BR sk sv

# Arg1: A list of languages codes.
# Arg2: The file name stem.
lang_to_texinfo = $(foreach lang,$(1),%D%/$(2).$(lang).texi)

# Automake does not understand GNU Make non-standard extensions,
# unfortunately, so we cannot use the above patsubst-based function here.
info_TEXINFOS = %D%/guix.texi			\
  %D%/guix.de.texi				\
  %D%/guix.es.texi				\
  %D%/guix.fr.texi				\
  %D%/guix.pt_BR.texi				\
  %D%/guix.ru.texi				\
  %D%/guix.zh_CN.texi				\
  %D%/guix-cookbook.texi			\
  %D%/guix-cookbook.de.texi			\
  %D%/guix-cookbook.fr.texi			\
  %D%/guix-cookbook.ko.texi			\
  %D%/guix-cookbook.pt_BR.texi			\
  %D%/guix-cookbook.sk.texi			\
  %D%/guix-cookbook.sv.texi

%C%_guix_TEXINFOS = \
  %D%/contributing.texi \
  %D%/fdl-1.3.texi

DOT_FILES =					\
  %D%/images/bootstrap-graph.dot		\
  %D%/images/bootstrap-packages.dot		\
  %D%/images/coreutils-graph.dot		\
  %D%/images/coreutils-bag-graph.dot		\
  %D%/images/gcc-core-mesboot0-graph.dot	\
  %D%/images/service-graph.dot			\
  %D%/images/shepherd-graph.dot

DOT_VECTOR_GRAPHICS =				\
  $(DOT_FILES:%.dot=%.eps)			\
  $(DOT_FILES:%.dot=%.pdf)

EXTRA_DIST +=					\
  %D%/htmlxref.cnf				\
  $(DOT_FILES)					\
  $(DOT_VECTOR_GRAPHICS)			\
  %D%/images/coreutils-size-map.eps		\
  %D%/environment-gdb.scm			\
  %D%/package-hello.scm				\
  %D%/package-hello.json

OS_CONFIG_EXAMPLES_TEXI =			\
  %D%/os-config-bare-bones.texi			\
  %D%/os-config-desktop.texi			\
  %D%/os-config-lightweight-desktop.texi	\
  %D%/he-config-bare-bones.scm

TRANSLATED_INFO = 						\
  $(call lang_to_texinfo,$(MANUAL_LANGUAGES),guix)		\
  $(call lang_to_texinfo,$(MANUAL_LANGUAGES),contributing)	\
  $(call lang_to_texinfo,$(COOKBOOK_LANGUAGES),guix-cookbook)

# Bundle this file so that makeinfo finds it in out-of-source-tree builds.
BUILT_SOURCES        += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
EXTRA_DIST           += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
MAINTAINERCLEANFILES  = $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)

# When a change to guix.texi occurs, it is not translated immediately.
# Because @pxref and @xref commands are references to sections by name, they
# should be translated. If a modification adds a reference to a section, this
# reference is not translated, which means it references a section that does not
# exist.
define xref_command
$(top_builddir)/pre-inst-env $(GUILE) --no-auto-compile	\
  "$(top_srcdir)/build-aux/convert-xref.scm"		\
  $@.tmp $<
endef

# If /dev/null is used for this POT file path, a warning will be issued
# because the path extension is not 'pot'.
dummy_pot = $(shell mktemp --suffix=.pot)

%D%:
	$(AM_V_GEN)$(MKDIR_P) "$@"

%D%/guix.%.texi: po/doc/guix-manual.%.po %D%/contributing.%.texi \
		guix/build/po.go | %D%
	-$(AM_V_PO4A)$(PO4A) --no-update			\
	    --variable localized="$@.tmp"			\
	    --variable master="$(srcdir)/%D%/guix.texi"		\
	    --variable po="$<"					\
	    --variable pot=$(dummy_pot)			\
	    $(srcdir)/po/doc/po4a.cfg
	-sed -i "s|guix\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
	-$(AM_V_POXREF)LC_ALL=en_US.UTF-8 $(xref_command)
	-mv "$@.tmp" "$@"

%D%/guix-cookbook.%.texi: po/doc/guix-cookbook.%.po guix/build/po.go | %D%
	-$(AM_V_PO4A)$(PO4A) --no-update			\
	    --variable localized="$@.tmp"			\
	    --variable master="$(srcdir)/%D%/guix-cookbook.texi" \
	    --variable po="$<"					\
	    --variable pot=$(dummy_pot)			\
	    $(srcdir)/po/doc/po4a.cfg
	-sed -i "s|guix-cookbook\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
	-$(AM_V_POXREF)LC_ALL=en_US.UTF-8 $(xref_command)
	-mv "$@.tmp" "$@"

%D%/contributing.%.texi: po/doc/guix-manual.%.po guix/build/po.go | %D%
	-$(AM_V_PO4A)$(PO4A) --no-update			\
	    --variable localized="$@.tmp"			\
	    --variable master="$(srcdir)/%D%/contributing.texi"	\
	    --variable po="$<"					\
	    --variable pot=$(dummy_pot)			\
	    $(srcdir)/po/doc/po4a.cfg
	-$(AM_V_POXREF)LC_ALL=en_US.UTF-8 $(xref_command)
	-mv "$@.tmp" "$@"

%D%/os-config-%.texi: gnu/system/examples/%.tmpl | %D%
	cp "$<" "$@"

infoimagedir = $(infodir)/images
dist_infoimage_DATA =				\
  $(DOT_FILES:%.dot=%.png)			\
  %D%/images/coreutils-size-map.png		\
  %D%/images/installer-network.png		\
  %D%/images/installer-partitions.png		\
  %D%/images/installer-resume.png

# Ask for warnings about cross-referenced manuals that are not listed in
# htmlxref.cnf.
AM_MAKEINFOHTMLFLAGS = --set-customization-variable CHECK_HTMLXREF=true

# Try hard to obtain an image size and aspect that's reasonable for inclusion
# in an Info or PDF document.
DOT_OPTIONS =					\
  -Gratio=.9 -Gnodesep=.005 -Granksep=.00005	\
  -Nfontsize=9 -Nheight=.1 -Nwidth=.1

.dot.png:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$@.tmp"
	$(AM_V_at)mv "$@.tmp" "$@"

.dot.pdf:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_DOT)set -e; export TZ=UTC0;				\
	    $(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$@.tmp"
	$(AM_V_at)sed -ri					\
	    -e 's,(/CreationDate \(D:).*\),\119700101000000),'	\
	    "$@.tmp"
	$(AM_V_at)mv "$@.tmp" "$@"

.dot.eps:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$@.tmp"
	$(AM_v_at)! grep -q %%CreationDate "$@.tmp"
	$(AM_V_at)mv "$@.tmp" "$@"

.png.eps:
	$(AM_V_GEN)$(MKDIR_P) "$$(dirname "$@")"
	$(AM_V_GEN)convert "$<" "$@-tmp.eps"
	$(AM_V_at)mv "$@-tmp.eps" "$@"

# We cannot add new dependencies to `%D%/guix.pdf' & co. (info "(automake)
# Extending").  Using the `-local' rules is imperfect, because they may be
# triggered after the main rule.  Oh, well.
pdf-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.pdf)
info-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.png)
ps-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.eps)		\
	  $(top_srcdir)/%D%/images/coreutils-size-map.eps
dvi-local: ps-local

## ----------- ##
##  Man pages. ##
## ----------- ##

# The man pages are generated using GNU Help2man.  In makefiles rules they
# depend not on the binary, but on the source files.  This usage allows a
# manual page to be generated by the maintainer and included in the
# distribution without requiring the end-user to have 'help2man' installed.
# They are built in $(srcdir) like info manuals.

sub_commands_mans =				\
  $(srcdir)/%D%/guix-archive.1			\
  $(srcdir)/%D%/guix-build.1			\
  $(srcdir)/%D%/guix-challenge.1		\
  $(srcdir)/%D%/guix-container.1		\
  $(srcdir)/%D%/guix-copy.1			\
  $(srcdir)/%D%/guix-deploy.1			\
  $(srcdir)/%D%/guix-describe.1			\
  $(srcdir)/%D%/guix-download.1			\
  $(srcdir)/%D%/guix-edit.1			\
  $(srcdir)/%D%/guix-environment.1		\
  $(srcdir)/%D%/guix-gc.1			\
  $(srcdir)/%D%/guix-git.1			\
  $(srcdir)/%D%/guix-graph.1			\
  $(srcdir)/%D%/guix-hash.1			\
  $(srcdir)/%D%/guix-home.1			\
  $(srcdir)/%D%/guix-import.1			\
  $(srcdir)/%D%/guix-lint.1			\
  $(srcdir)/%D%/guix-offload.1			\
  $(srcdir)/%D%/guix-pack.1			\
  $(srcdir)/%D%/guix-package.1			\
  $(srcdir)/%D%/guix-processes.1		\
  $(srcdir)/%D%/guix-publish.1			\
  $(srcdir)/%D%/guix-pull.1			\
  $(srcdir)/%D%/guix-refresh.1			\
  $(srcdir)/%D%/guix-repl.1			\
  $(srcdir)/%D%/guix-shell.1			\
  $(srcdir)/%D%/guix-size.1			\
  $(srcdir)/%D%/guix-style.1			\
  $(srcdir)/%D%/guix-system.1			\
  $(srcdir)/%D%/guix-time-machine.1		\
  $(srcdir)/%D%/guix-weather.1

# Assume that cross-compiled commands cannot be executed.
if !CROSS_COMPILING

dist_man1_MANS =				\
  $(srcdir)/%D%/guix.1				\
  $(sub_commands_mans)

endif

gen_man =						\
  LANGUAGE= $(top_builddir)/pre-inst-env $(HELP2MAN)	\
  $(HELP2MANFLAGS)

HELP2MANFLAGS = --source=GNU --info-page=$(PACKAGE_TARNAME)
# help2man reproducibility
SOURCE_DATE_EPOCH = $(shell git show HEAD --format=%ct --no-patch 2>/dev/null || echo 1)
export SOURCE_DATE_EPOCH

$(srcdir)/%D%/guix.1: scripts/guix.in $(sub_commands_mans)
	-$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`

# The 'case' ensures the man pages are only generated if the corresponding
# source script (the first prerequisite) has been changed.  The $(GOBJECTS)
# prerequisite is solely meant to force these docs to be made only after all
# Guile modules have been compiled.  We also need the guix script to exist.
$(srcdir)/%D%/guix-%.1: guix/scripts/%.scm $(GOBJECTS) scripts/guix
	-@case '$?' in								\
	  *$<*) $(AM_V_HELP2MAN:@%=%)$(gen_man) --output="$@" "guix $*";;	\
	  *)    : ;;								\
	esac

if BUILD_DAEMON
if !CROSS_COMPILING

dist_man1_MANS += $(srcdir)/%D%/guix-daemon.1

$(srcdir)/%D%/guix-daemon.1: guix-daemon$(EXEEXT)
	-$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`

endif
endif

# Reproducible tarball

DIST_CONFIGURE_FLAGS =				\
  --localstatedir=/var				\
  --sysconfdir=/etc

# Delete all Autotools-generated files and rerun configure to ensure
# a clean cache and distributing reproducible versions.
auto-clean: maintainer-clean-vti doc-clean
	rm -f ABOUT-NLS INSTALL
	rm -f aclocal.m4 configure libtool Makefile.in
	if test -e .git; then				\
	    git clean -fdx -- '.am*' build-aux m4 po;	\
	else						\
	    rm -rf .am*;				\
	    $(MAKE) -C po/guix maintainer-clean;	\
	    $(MAKE) -C po/packages maintainer-clean;	\
	fi
	rm -f guile
	rm -f guix-daemon nix/nix-daemon/guix_daemon-guix-daemon.o
# Automake fails if guix-cookbook-LANG.texi stubs are missing; running
# autoreconf -vif is not enough.
	./bootstrap
# The dependency chain for the guix-cookbook-LANG.texi was cut on purpose;
# they must be deleted to ensure a rebuild.
	rm -f $(filter-out %D%/guix.texi %D%/guix-cookbook.texi, $(info_TEXINFOS))
	./configure $(DIST_CONFIGURE_FLAGS)

# Delete all generated doc files to ensure a clean cache and distributing
# reproducible versions.
doc-clean:
	rm -f $(srcdir)/doc/*.1
	rm -f $(srcdir)/doc/stamp*
	rm -f $(DOT_FILES:%.dot=%.png)
	rm -f $(DOT_VECTOR_GRAPHICS)
	rm -f doc/images/coreutils-size-map.eps
ATH" "src/?.so;;") (setenv "LUA_PATH" "src/?.lua;;") (invoke "lua" "tests/test.lua") (invoke "lua" "tests/test-lom.lua")))))) (inputs (list lua expat)) (home-page "https://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)))) (define-public lua5.1-expat (make-lua-expat "lua5.1-expat" lua-5.1)) (define-public lua5.2-expat (make-lua-expat "lua5.2-expat" lua-5.2)) (define (make-lua-socket name lua) (package (name name) (version "3.0-rc1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/diegonehab/luasocket") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1chs7z7a3i3lck4x7rz60ziwbf793gw169hpjdfca8y4yf1hzsxk")))) (build-system gnu-build-system) (arguments `(#:make-flags (let ((out (assoc-ref %outputs "out")) (lua-version ,(version-major+minor (package-version lua)))) (list (string-append "INSTALL_TOP=" out) (string-append "LUAV?=" lua-version))) #: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)) (invoke "lua" "test/testsrvr.lua")) (invoke "lua" "test/testclnt.lua")))))) (inputs (list lua)) (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 license:expat))) (define-public lua5.1-socket (make-lua-socket "lua5.1-socket" lua-5.1)) (define-public lua5.2-socket (make-lua-socket "lua5.2-socket" lua-5.2)) (define (make-lua-filesystem name lua) (package (name name) (version "1.7.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/keplerproject/luafilesystem") (commit (string-append "v" (string-join (string-split version #\.) "_"))))) (file-name (git-file-name name version)) (sha256 (base32 "0zmprgkm9zawdf9wnw0v3w6ibaj442wlc6alp39hmw610fl4vghi")))) (build-system gnu-build-system) (arguments `(#:make-flags (let ((out (assoc-ref %outputs "out")) (lua-version ,(version-major+minor (package-version lua)))) (list (string-append "PREFIX=" out) (string-append "LUA_LIBDIR=" out "/lib/lua/" lua-version))) #:test-target "test" #:phases (modify-phases %standard-phases (delete 'configure)))) (inputs (list lua)) (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)))) (define-public lua-filesystem (make-lua-filesystem "lua-filesystem" lua)) (define-public lua5.1-filesystem (make-lua-filesystem "lua5.1-filesystem" lua-5.1)) (define-public lua5.2-filesystem (make-lua-filesystem "lua5.2-filesystem" lua-5.2)) (define (make-lua-ossl name lua) (package (name name) (version "20220711") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/wahern/luaossl") (commit (string-append "rel-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1a9pgmc6fbhgh1m9ksz9fq057yzz46npqgakcsy9vngg47xacfdb")))) (build-system gnu-build-system) (arguments (list #:make-flags #~(let ((lua-api-version #$(version-major+minor (package-version lua)))) (list (string-append "CC=" #$(cc-for-target)) "CFLAGS='-D HAVE_SYS_SYSCTL_H=0'" ; sys/sysctl.h is deprecated (string-append "prefix=" #$output) (string-append "LUA_APIS=" lua-api-version))) #:phases #~(modify-phases %standard-phases (delete 'configure) (delete 'check) (add-after 'install 'check (lambda _ (let ((lua-version #$(version-major+minor (package-version lua)))) (setenv "LUA_CPATH" (string-append #$output "/lib/lua/" lua-version "/?.so;;")) (setenv "LUA_PATH" (string-append #$output "/share/lua/" lua-version "/?.lua;;")) (with-directory-excursion "regress" (for-each (lambda (f) (unless (member f (list ;; This test is for luajit only "./104-interposition-discarded.lua" ;; needs cqueues, which needs ossl "./148-custom-extensions.lua")) (invoke "lua" f))) (find-files "." "^[0-9].*\\.lua$"))))))))) (inputs (list lua openssl)) (home-page "https://25thandclement.com/~william/projects/luaossl.html") (synopsis "OpenSSL bindings for Lua") (description "The luaossl extension module for Lua provides comprehensive, low-level bindings to the OpenSSL library, including support for certificate and key management, key generation, signature verification, and deep bindings to the distinguished name, alternative name, and X.509v3 extension interfaces. It also binds OpenSSL's bignum, message digest, HMAC, cipher, and CSPRNG interfaces.") (license license:expat))) (define-public lua-ossl (make-lua-ossl "lua-ossl" lua)) (define-public lua5.1-ossl (make-lua-ossl "lua5.1-ossl" lua-5.1)) (define-public lua5.2-ossl (make-lua-ossl "lua5.2-ossl" lua-5.2)) (define (make-lua-sec name lua) (package (name name) (version "0.9") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/brunoos/luasec") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0ssncgkggyr8i3z6zbvgrgsqj2q8676rnsikhpfwnk9n7sx4gwbl")))) (build-system gnu-build-system) (arguments `(#:make-flags (let ((out (assoc-ref %outputs "out")) (lua-version ,(version-major+minor (package-version lua)))) (list "linux" ,(string-append "CC=" (cc-for-target)) "LD=gcc" (string-append "LUAPATH=" out "/share/lua/" lua-version) (string-append "LUACPATH=" out "/lib/lua/" lua-version))) #:tests? #f ; no tests included #:phases (modify-phases %standard-phases (delete 'configure)))) (inputs (list lua openssl)) (propagated-inputs `(("lua-socket" ,(make-lua-socket (format #f "lua~a-socket" (version-major+minor (package-version lua))) lua)))) (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 license:expat))) (define-public lua5.1-sec (make-lua-sec "lua5.1-sec" lua-5.1)) (define-public lua5.2-sec (make-lua-sec "lua5.2-sec" lua-5.2)) (define (make-lua-cqueues name lua lua-ossl) (package (name name) (version "20200726") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/wahern/cqueues") (commit (string-append "rel-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "17gwqndlga6gnishgs6wk8cvgwzanddr42yikkg2xd4nanhcg8z9")))) (build-system gnu-build-system) (arguments (list #:modules '((guix build gnu-build-system) (guix build utils) (ice-9 string-fun)) #:make-flags #~(let ((lua-api-version #$(version-major+minor (package-version lua)))) (list (string-append "CC=" #$(cc-for-target)) (string-append "LUA_APIS=" lua-api-version))) #:phases #~(modify-phases %standard-phases (delete 'configure) (delete 'check) (replace 'install (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "install" (append make-flags (list (string-append "DESTDIR=" #$output) "prefix="))))) (add-after 'install 'check (lambda* (#:key make-flags #:allow-other-keys) (let* ((lua-version #$(version-major+minor (package-version lua))) (env-suffix (if (equal? lua-version "5.1") "" (string-append "_" (string-replace-substring lua-version "." "_")))) (lua-cpath (lambda (p) (string-append p "/lib/lua/" lua-version "/?.so"))) (lua-path (lambda (p) (string-append p "/share/lua/" lua-version "/?.lua")))) ;; The test suite sets Lua-version-specific search-path variables ;; when available so we must do the same, as these take ;; precedence over the generic "LUA_CPATH" and "LUA_PATH" (setenv (string-append "LUA_CPATH" env-suffix) (string-append (string-join (map lua-cpath (list #$output #$lua-ossl)) ";") ";;")) (setenv (string-append "LUA_PATH" env-suffix) (string-append (string-join (map lua-path (list #$output #$lua-ossl)) ";") ";;")) ;; Skip regression tests we expect to fail (with-directory-excursion "regress" (for-each (lambda (f) (rename-file f (string-append f ".skip"))) (append ;; Regression tests that require network ;; connectivity '("22-client-dtls.lua" "30-starttls-completion.lua" "62-noname.lua" "153-dns-resolvers.lua") ;; Regression tests that require LuaJIT '("44-resolvers-gc.lua" "51-join-defunct-thread.lua" ;; These both need the ffi module. "73-starttls-buffering.lua" "87-alpn-disappears.lua") ;; Regression tests that require Lua 5.3 (if (not (equal? lua-version "5.3")) '("152-thread-integer-passing.lua") '())))) (apply invoke "make" "check" make-flags))))))) (native-inputs (list m4)) (inputs (list lua openssl)) (propagated-inputs (list lua-ossl)) (home-page "https://25thandclement.com/~william/projects/cqueues.html") (synopsis "Event loop for Lua using continuation queues") (description "The cqueues extension module for Lua implements an event loop that operates through the yielding and resumption of coroutines. It is designed to be non-intrusive, composable, and embeddable within existing applications.") (license license:expat))) (define-public lua-cqueues (make-lua-cqueues "lua-cqueues" lua lua-ossl)) (define-public lua5.1-cqueues (make-lua-cqueues "lua5.1-cqueues" lua-5.1 lua5.1-ossl)) (define-public lua5.2-cqueues (make-lua-cqueues "lua5.2-cqueues" lua-5.2 lua5.2-ossl)) (define-public lua-penlight (package (name "lua-penlight") (version "1.7.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Tieske/Penlight") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0qc2d1riyr4b5a0gnsmdw2lz5pw65s4ac60hc34w3mmk9l6yg6nl")))) (build-system trivial-build-system) (inputs (list lua)) (propagated-inputs (list lua-filesystem)) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let* ((source (assoc-ref %build-inputs "source")) (lua-version ,(version-major+minor (package-version lua))) (destination (string-append (assoc-ref %outputs "out") "/share/lua/" lua-version))) (mkdir-p destination) (with-directory-excursion source (copy-recursively "lua/" destination))) #t))) (home-page "http://tieske.github.io/Penlight/") (synopsis "Collection of general purpose libraries for the Lua language") (description "Penlight is a set of pure Lua libraries focusing on input data handling (such as reading configuration files), functional programming (such as map, reduce, placeholder expressions,etc), and OS path management. Much of the functionality is inspired by the Python standard libraries.") (license license:expat))) (define-public lua-ldoc (package (name "lua-ldoc") (version "1.4.6") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/stevedonovan/LDoc") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1h0cf7bp4am54r0j8lhjs2l1c7q5vz74ba0jvw9qdbaqimls46g8")))) (build-system gnu-build-system) (inputs (list lua)) (propagated-inputs (list lua-penlight)) (arguments `(#:tests? #f ;tests must run after installation. #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-installation-directory (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) (lua-version ,(version-major+minor (package-version lua)))) (substitute* "makefile" (("LUA=.*") "#\n") (("(LUA_PREFIX=).*" _ prefix) (string-append prefix out "\n")) (("(LUA_BINDIR=).*" _ prefix) (string-append prefix out "/bin\n")) (("(LUA_SHAREDIR=).*" _ prefix) (string-append prefix out "/share/lua/" lua-version "\n")))) #t)) (delete 'configure) (add-before 'install 'create-bin-directory (lambda* (#:key outputs #:allow-other-keys) (mkdir-p (string-append (assoc-ref outputs "out") "/bin")) #t))))) (home-page "https://stevedonovan.github.io/ldoc/") (synopsis "Lua documentation generator") (description "LDoc is a LuaDoc-compatible documentation generation system for Lua source code. It parses the declaration and documentation comments in a set of Lua source files and produces a set of XHTML pages describing the commented declarations and functions.") (license license:expat))) (define (make-lua-lgi name lua) (package (name name) (version "0.9.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/pavouk/lgi") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "03rbydnj411xpjvwsyvhwy4plm96481d7jax544mvk7apd8sd5jj")))) (build-system gnu-build-system) (arguments `(#:make-flags (list ,(string-append "CC=" (cc-for-target)) (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. (substitute* "./lgi/Makefile" (("LUA_VERSION=5.1") (format #f "LUA_VERSION=~a" ,(version-major+minor (package-version lua))))) #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))))) (native-inputs (list dbus ;tests use 'dbus-run-session' pkg-config)) (inputs `(("cairo" ,cairo) ("glib" ,glib) ("gobject-introspection" ,gobject-introspection) ("gtk" ,gtk+-2) ("libffi" ,libffi) ("lua" ,lua) ("pango" ,pango) ("xorg-server" ,xorg-server))) (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))) (define-public lua-lgi (make-lua-lgi "lua-lgi" lua)) (define-public lua5.1-lgi (make-lua-lgi "lua5.1-lgi" lua-5.1)) (define-public lua5.2-lgi (make-lua-lgi "lua5.2-lgi" lua-5.2)) (define (make-lua-lpeg name lua) (package (name name) (version "1.0.2") (source (origin (method url-fetch) (uri (string-append "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-" version ".tar.gz")) (sha256 (base32 "1zjzl7acvcdavmcg5l7wi12jd4rh95q9pl5aiww7hv0v0mv6bmj8")))) (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 (list lua)) (synopsis "Pattern-matching library for Lua") (description "LPeg is a pattern-matching library for Lua, based on Parsing Expression Grammars (PEGs).") (home-page "https://www.inf.puc-rio.br/~roberto/lpeg") (license license:expat))) (define-public lua-lpeg (make-lua-lpeg "lua-lpeg" lua)) (define-public lua5.1-lpeg (make-lua-lpeg "lua5.1-lpeg" lua-5.1)) (define-public lua5.2-lpeg (make-lua-lpeg "lua5.2-lpeg" lua-5.2)) (define (make-lua-luv name lua) (package (name name) (version "1.43.0-0") (source (origin ;; The release tarball includes the sources of libuv but does ;; not include the pkg-config files. (method git-fetch) (uri (git-reference (url "https://github.com/luvit/luv") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1yzi4bm845vl84wyv2qw4z1n1v285lgwm681swmp84brfy2s7czp")))) (build-system cmake-build-system) (arguments (list #:tests? #f ; there are none #:configure-flags #~'("-DWITH_LUA_ENGINE=Lua" "-DWITH_SHARED_LIBUV=On" "-DBUILD_MODULE=Off" "-DBUILD_SHARED_LIBS=On" "-DLUA_BUILD_TYPE=System") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'copy-lua-compat (lambda* _ (copy-recursively #+(this-package-native-input "lua-compat") "lua-compat") (setenv "CPATH" (string-append (getcwd) "/lua-compat/c-api:" (or (getenv "CPATH") ""))) #t))))) (inputs (list lua libuv-for-luv)) (native-inputs `(("lua-compat" ,(origin (method git-fetch) (uri (git-reference (url "https://github.com/keplerproject/lua-compat-5.3") (commit "v0.10"))) (file-name "lua-compat-5.3-checkout") (sha256 (base32 "1caxn228gx48g6kymp9w7kczgxcg0v0cd5ixsx8viybzkd60dcn4")))))) (home-page "https://github.com/luvit/luv/") (synopsis "Libuv bindings for Lua") (description "This library makes libuv available to Lua scripts.") (license license:asl2.0))) (define-public lua-luv (make-lua-luv "lua-luv" lua)) (define-public lua5.1-luv (make-lua-luv "lua5.1-luv" lua-5.1)) (define-public lua5.2-luv (make-lua-luv "lua5.2-luv" lua-5.2)) ;; Lua 5.3 is not supported. (define (make-lua-bitop name lua) (package (name name) (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)) "/bit/bit.so")) #:phases (modify-phases %standard-phases (delete 'configure)))) (inputs (list lua)) (home-page "https://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))) (define-public lua5.2-bitop (make-lua-bitop "lua5.2-bitop" lua-5.2)) (define-public lua5.1-bitop (make-lua-bitop "lua5.1-bitop" lua-5.1)) (define-public lutok (package (name "lutok") (version "0.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/freebsd/lutok") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0a2vc2wy5hasw69h1mz768ywx6c4ccl9jzzd4ixddwba3z3ha03b")))) (build-system gnu-build-system) ;; Disable the test suite to avoid a circular dependency on kyua. (arguments (list #:tests? #f)) (native-inputs (list autoconf automake libtool pkg-config)) (inputs (list atf)) (propagated-inputs (list lua-5.2)) ;included in c_gate.hpp (home-page "https://github.com/freebsd/lutok") (synopsis "Lightweight C++ API for Lua") (description "Lutok is a lightweight C++ API library for Lua. Lutok provides thin C++ wrappers around the Lua C API to ease the interaction between C++ and Lua. These wrappers make intensive use of @acronym{RAII, Resource Acquisition is Initialization} to prevent resource leakage, expose C++-friendly data types, report errors by means of exceptions and ensure that the Lua stack is always left untouched in the face of errors. The library also provides a small subset of miscellaneous utility functions built on top of the wrappers. Lutok focuses on providing a clean and safe C++ interface; the drawback is that it is not suitable for performance-critical environments. In order to implement error-safe C++ wrappers on top of a Lua C binary library, Lutok adds several layers or abstraction and error checking that go against the original spirit of the Lua C API and thus degrade performance.") (license license:bsd-3))) (define-public selene (package (name "selene") (version "2017.08.25") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jeremyong/Selene") ;; The release is quite old. (commit "ffe1ade2568d4cff5894552be8f43e63e379a4c9"))) (file-name "Selene") (sha256 (base32 "1axrgv3rxxdsaf807lwvklfzicn6x6gpf35narllrnz9lg6hn508")))) (build-system cmake-build-system) (arguments `(#:configure-flags ;; lua pc file in CMakeLists.txt is lua5.3.pc '("-DLUA_PC_CFG=lua;lua-5.3;lua-5.1") #:test-target "all" #:phases ;; This is a header only library (modify-phases %standard-phases (delete 'build) (replace 'install (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((output (assoc-ref outputs "out")) (source (assoc-ref inputs "source")) (includedir (string-append output "/include"))) (copy-recursively (string-append source "/include") includedir)) #t)) ;; The path of test files are hard coded. (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((output (assoc-ref outputs "out")) (source (assoc-ref inputs "source")) (builddir (getcwd)) (testdir (string-append builddir "/test"))) (copy-recursively (string-append source "/test") testdir) (invoke "make") (mkdir-p "runner") (copy-file "./test_runner" "./runner/test_runner") (chdir "./runner") (invoke "./test_runner"))))))) (native-inputs (list lua pkg-config)) (home-page "https://github.com/jeremyong/Selene") (synopsis "Lua C++11 bindings") (description "Selene is a simple C++11 header-only library enabling seamless interoperability between C++ and Lua programming language.") (license license:zlib))) (define-public lua-resty-core (package (name "lua-resty-core") (version "0.1.18") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openresty/lua-resty-core") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1c58hykwpg5zqbyhrcb703pzwbkih409v3bh2gady6z2kj9q32dw")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let* ((luajit-major+minor ,(version-major+minor (package-version lua))) (package-lua-resty (lambda (input output) (mkdir-p (string-append output "/lib/lua")) (copy-recursively (string-append input "/lib/resty") (string-append output "/lib/lua/resty")) (copy-recursively (string-append input "/lib/ngx") (string-append output "/lib/ngx")) (symlink (string-append output "/lib/lua/resty") (string-append output "/lib/resty"))))) (package-lua-resty (assoc-ref %build-inputs "source") (assoc-ref %outputs "out"))) #t))) (home-page "https://github.com/openresty/lua-resty-core") (synopsis "Lua API for NGINX") (description "This package provides a FFI-based Lua API for @code{ngx_http_lua_module} or @code{ngx_stream_lua_module}.") (license license:bsd-2))) (define-public lua-resty-lrucache (package (name "lua-resty-lrucache") (version "0.10") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openresty/lua-resty-lrucache") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1bsc54v1rvxmkwg7a2c01p192lvw5g576f589is8fy1m1c6v4ap8")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let* ((luajit-major+minor ,(version-major+minor (package-version lua))) (package-lua-resty (lambda (input output) (mkdir-p (string-append output "/lib/lua/" luajit-major+minor)) (copy-recursively (string-append input "/lib/resty") (string-append output "/lib/lua/" luajit-major+minor "/resty")) (symlink (string-append output "/lib/lua/" luajit-major+minor "/resty") (string-append output "/lib/resty"))))) (package-lua-resty (assoc-ref %build-inputs "source") (assoc-ref %outputs "out"))) #t))) (home-page "https://github.com/openresty/lua-resty-lrucache") (synopsis "Lua LRU cache based on the LuaJIT FFI") (description "This package provides Lua LRU cache based on the LuaJIT FFI.") (license license:bsd-2))) (define-public lua-resty-signal (package (name "lua-resty-signal") (version "0.02") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openresty/lua-resty-signal") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "13y1pqn45y49mhqwywasfdsid46d0c33yi6mrnracbnmvyxz1cif")))) (build-system gnu-build-system) (arguments `(#:tests? #f ;TODO: Run the test suite. #:make-flags (list ,(string-append "CC=" (cc-for-target)) (string-append "PREFIX=" %output)) #:phases (modify-phases %standard-phases (delete 'configure) (add-after 'install 'install-lua (lambda* (#:key inputs outputs #:allow-other-keys) (use-modules (guix build utils)) (let* ((luajit-major+minor ,(version-major+minor (package-version lua))) (package-lua-resty (lambda (input output) (mkdir-p (string-append output "/lib/lua/" luajit-major+minor)) (copy-recursively (string-append input "/lib/resty") (string-append output "/lib/lua/" luajit-major+minor "/resty")) (symlink (string-append output "/lib/lua/" luajit-major+minor "/resty") (string-append output "/lib/resty"))))) (package-lua-resty (assoc-ref inputs "source") (assoc-ref outputs "out"))) #t))))) (home-page "https://github.com/openresty/lua-resty-signal") (synopsis "Lua library for killing or sending signals to Linux processes") (description "This package provides Lua library for killing or sending signals to Linux processes.") (license license:bsd-3))) (define-public lua-tablepool (package (name "lua-tablepool") (version "0.01") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openresty/lua-tablepool") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "03yjj3w6znvj6843prg84m0lkrn49l901f9hj9bgy3cj9s0awl6y")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let* ((luajit-major+minor ,(version-major+minor (package-version lua))) (package-lua-resty (lambda (input output) (mkdir-p (string-append output "/lib/lua/" luajit-major+minor)) (copy-recursively (string-append input "/lib") (string-append output "/lib"))))) (package-lua-resty (assoc-ref %build-inputs "source") (assoc-ref %outputs "out"))) #t))) (home-page "https://github.com/openresty/lua-tablepool") (synopsis "Lua table recycling pools for LuaJIT") (description "This package provides Lua table recycling pools for LuaJIT.") (license license:bsd-2))) (define-public lua-resty-shell (package (name "lua-resty-shell") (version "0.03") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openresty/lua-resty-shell") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1s6g04ip4hr97r2pd8ry3alq063604s9a3l0hn9nsidh81ps4dp7")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let* ((luajit-major+minor ,(version-major+minor (package-version lua))) (package-lua-resty (lambda (input output) (mkdir-p (string-append output "/lib/lua/" luajit-major+minor)) (copy-recursively (string-append input "/lib/resty") (string-append output "/lib/lua/" luajit-major+minor "/resty")) (symlink (string-append output "/lib/lua/" luajit-major+minor "/resty") (string-append output "/lib/resty"))))) (package-lua-resty (assoc-ref %build-inputs "source") (assoc-ref %outputs "out"))) #t))) (home-page "https://github.com/openresty/lua-resty-shell") (synopsis "Lua module for nonblocking system shell command executions") (description "This package provides Lua module for nonblocking system shell command executions.") (license license:bsd-3))) (define-public (make-luarocks name lua) (package (name name) (version "3.9.2") (home-page "https://luarocks.org/") (source (origin (method url-fetch) (uri (string-append "https://luarocks.org/releases/luarocks-" version ".tar.gz")) (sha256 (base32 "1nsfp7cwqcxa8vmkcqkgi5wc0iax0j3gbdfd183kw81cq3nf99mw")))) (build-system gnu-build-system) (arguments `(#:tests? #f ;upstream has no tests #:phases (modify-phases %standard-phases (add-before 'build 'patch-bin-sh (lambda* (#:key inputs #:allow-other-keys) (substitute* '("GNUmakefile" "src/luarocks/fs/unix.lua" "src/luarocks/core/sysdetect.lua") (("/bin/sh") (search-input-file inputs "/bin/sh"))))) (replace 'configure (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (invoke "./configure" (string-append "--prefix=" out))))) (add-after 'install 'patch-unzip (lambda* (#:key inputs outputs #:allow-other-keys) (substitute* (string-append (assoc-ref outputs "out") "/etc/luarocks/config-" ,(substring (package-version lua) 0 3) ".lua") ;e.g. "5.2" (("variables = \\{") (string-append "variables = {\n" " AR = \"" (search-input-file inputs "/bin/ar") "\";\n" " BUNZIP2 = \"" (search-input-file inputs "/bin/bunzip2") "\";\n" " CC = \"" (search-input-file inputs "/bin/gcc") "\";\n" " CHMOD = \"" (search-input-file inputs "/bin/chmod") "\";\n" " CP = \"" (search-input-file inputs "/bin/cp") "\";\n" " CURL = \"" (search-input-file inputs "/bin/curl") "\";\n" " FIND = \"" (search-input-file inputs "/bin/find") "\";\n" " GIT = \"" (search-input-file inputs "/bin/git") "\";\n" " GPG = \"" (search-input-file inputs "/bin/gpg") "\";\n" " GUNZIP = \"" (search-input-file inputs "/bin/gunzip") "\";\n" " HG = \"" (search-input-file inputs "/bin/hg") "\";\n" " LD = \"" (search-input-file inputs "/bin/ld") "\";\n" " LS = \"" (search-input-file inputs "/bin/ls") "\";\n" " MAKE = \"" (search-input-file inputs "/bin/make") "\";\n" " MD5SUM = \"" (search-input-file inputs "/bin/md5sum") "\";\n" " MKDIR = \"" (search-input-file inputs "/bin/mkdir") "\";\n" " MKTEMP = \"" (search-input-file inputs "/bin/mktemp") "\";\n" " OPENSSL = \"" (search-input-file inputs "/bin/openssl") "\";\n" " PWD = \"" (search-input-file inputs "/bin/pwd") "\";\n" " RANLIB = \"" (search-input-file inputs "/bin/ranlib") "\";\n" " RM = \"" (search-input-file inputs "/bin/rm") "\";\n" " RMDIR = \"" (search-input-file inputs "/bin/rmdir") "\";\n" " RSYNC = \"" (search-input-file inputs "/bin/rsync") "\";\n" " SCP = \"" (search-input-file inputs "/bin/scp") "\";\n" " TAR = \"" (search-input-file inputs "/bin/tar") "\";\n" " TEST = \"" (search-input-file inputs "/bin/test") "\";\n" " TOUCH = \"" (search-input-file inputs "/bin/touch") "\";\n" " UNZIP = \"" (search-input-file inputs "/bin/unzip") " -n\";\n" " WGET = \"" (search-input-file inputs "/bin/wget") "\";\n" " ZIP = \"" (search-input-file inputs "/bin/zip") "\";")))))))) (inputs (list lua bash-minimal ;; Executables required by luarocks. binutils bzip2 coreutils curl findutils gcc git gnupg gzip gnu-make mercurial openssh openssl rsync tar unzip wget zip)) (native-inputs (list unzip)) (synopsis "Package manager for Lua modules") (description "LuaRocks is the package manager for the Lua programming language. It allows you to install Lua modules as self-contained packages called @url{https://luarocks.org/en/Types_of_rocks, @emph{rocks}}, which also contain version @url{https://luarocks.org/en/Dependencies, dependency} information. This information can be used both during installation, so that when one rock is requested all rocks it depends on are installed as well, and also optionally at run time, so that when a module is required, the correct version is loaded. LuaRocks supports both local and @url{http://luarocks.org/en/Rocks_repositories, remote} repositories, and multiple local rocks trees.") (license license:expat))) (define-public lua5.2-luarocks (make-luarocks "lua5.2-luarocks" lua-5.2)) (define-public luarocks (make-luarocks "luarocks" lua)) (define-public emilua (package (name "emilua") (version "0.4.3") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.com/emilua/emilua.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1dwag2pyqc0g86rris4w4fzafmz9a6kiqd47vdq7hl3a1lyi74mx")))) (build-system meson-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch (lambda* (#:key inputs #:allow-other-keys) (substitute* "src/emilua_gperf.awk" (("/usr/bin/env") (which "env"))) (substitute* "src/system.cpp" (("P_PIDFD") "P_PID")) (copy-recursively (assoc-ref inputs "emilua-http") "emilua-http") (copy-recursively (assoc-ref inputs "trial-protocol") "trial-protocol") (with-directory-excursion "subprojects" (symlink "../emilua-http" "emilua-http") (copy-file "packagefiles/emilua-http/meson.build" "emilua-http/meson.build") (symlink "../trial-protocol" "trial-protocol") (copy-file "packagefiles/trial.protocol/meson.build" "trial-protocol/meson.build"))))) #:configure-flags #~(list "-Denable_http=true" "-Denable_file_io=true" "-Denable_io_uring=true" ;; TODO: Linux namespaces are disabled for now due to conflict ;; with some packages in guix. "-Denable_linux_namespaces=false" "-Denable_manpages=false" "-Dversion_suffix=-guix1"))) (native-inputs (list luajit-lua52-openresty re2c gperf xxd pkg-config)) (inputs `(("emilua-http" ,(origin (method git-fetch) (uri (git-reference (url "https://github.com/BoostGSoC14/boost.http") (commit "93ae527c89ffc517862e1f5f54c8a257278f1195"))) (sha256 (base32 "0jm7fw0cjd3s9zkkvyh6mcj6z32hcy7l9bszv74l92qk15ivvp9h")))) ("trial-protocol" ,(origin (method git-fetch) (uri (git-reference (url "https://github.com/breese/trial.protocol") (commit "79149f604a49b8dfec57857ca28aaf508069b669"))) (sha256 (base32 "0k42i5b4v3zz5x0r3dssiymgmn2x8zg4fzdksya9aggxgigippsx")))) ("boost" ,boost) ("boost-static" ,boost-static) ("fmt" ,fmt-8) ("gcc" ,gcc-12) ("luajit-lua52-openresty" ,luajit-lua52-openresty) ("ncurses" ,ncurses) ("serd" ,serd) ("sord" ,sord) ("libcap" ,libcap) ("liburing" ,liburing) ("openssl" ,openssl))) (native-search-paths (list (search-path-specification (variable "EMILUA_PATH") (files (list (string-append "lib/emilua-" (version-major+minor version))))))) (home-page "https://gitlab.com/emilua/emilua") (synopsis "Lua execution engine") (description "Emilua is a LuaJIT-based Lua execution engine that supports async IO, fibers and actor-inspired threading. The experimental builtin HTTP module is enabled.") (license license:boost1.0))) (define-public fennel (package (name "fennel") (version "1.5.0") (source (origin (method git-fetch) (uri (git-reference (url "https://git.sr.ht/~technomancy/fennel") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0d25v7swq3msxsdzv91wwxy89y3qgw4bvzq1px89qsjzbbd7ccg2")))) (build-system gnu-build-system) (arguments (list #:make-flags #~(list (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:tests? #t ;even on cross-build #:test-target "test" #:phases #~(modify-phases %standard-phases (delete 'configure) (add-after 'build 'patch-fennel (lambda* (#:key inputs #:allow-other-keys) (substitute* "fennel" (("/usr/bin/env .*lua") (search-input-file inputs "/bin/lua"))))) (delete 'check) (add-after 'install 'check (assoc-ref %standard-phases 'check))))) (inputs (list lua)) (home-page "https://fennel-lang.org/") (synopsis "Lisp that compiles to Lua") (description "Fennel is a programming language that brings together the speed, simplicity, and reach of Lua with the flexibility of a Lisp syntax and macro system.") (license license:expat))) (define-public antifennel (package (version "0.2.0") (name "antifennel") (source (origin (method git-fetch) (uri (git-reference (url "https://git.sr.ht/~technomancy/antifennel") (commit version))) (sha256 (base32 "1hd9h17q31b3gg88c657zq4han4air2ag55rrakbmcpy6n8acsqc")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (inputs (list luajit)) (arguments (list #:phases #~(modify-phases %standard-phases (delete 'configure) ;; Tests pass after the fix introduced by the commit ;; ecd2169fcad1fa6616fdf6e6a8569f5b866601e5 (delete 'check) (replace 'install (lambda _ (install-file "antifennel" (string-append #$output "/bin"))))))) (home-page "https://git.sr.ht/~technomancy/antifennel") (synopsis "Turn Lua code into Fennel code") (description "This package provides a way to turn Lua code into Fennel code. This compiler does the opposite of what the Fennel compiler does.") (license license:expat))) (define-public fnlfmt (package (name "fnlfmt") (version "0.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://git.sr.ht/~technomancy/fnlfmt") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "06gzw7f20yw4192kymr4karxw3ia3apjnjqpm6vxph87c67d1fa3")) (modules '((guix build utils))) (snippet #~(begin ;; Use input fennel instead of bundled fennel. (delete-file "fennel") (delete-file "fennel.lua") (substitute* "Makefile" (("./fennel") "fennel")))))) (build-system gnu-build-system) (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) (ice-9 match)) #:test-target "test" #:phases (modify-phases %standard-phases (delete 'configure) (add-before 'build 'patch-makefile (lambda* (#:key native-inputs inputs #:allow-other-keys) (substitute* "Makefile" ;; Patch lua shebang that gets inserted to fnlfmt. (("/usr/bin/env lua") (search-input-file (or native-inputs inputs) "/bin/lua"))))) (replace 'install ;; There is no install target; manually install the output file. (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) (for-each (lambda (file) (install-file file bin)) (find-files "." "fnlfmt"))))) (add-after 'install 'wrap (lambda* (#:key inputs native-inputs outputs #:allow-other-keys) (let* ((all-inputs (or native-inputs inputs)) (fnlfmt (assoc-ref outputs "out")) (lua-version ,(version-major+minor (package-version lua))) (fennel (assoc-ref all-inputs "fennel"))) (wrap-program (string-append fnlfmt "/bin/fnlfmt") `("LUA_PATH" ";" suffix (,(format #f "~a/share/lua/~a/?.lua" fennel lua-version)))) #t)))))) (inputs (list bash-minimal)) (native-inputs (list lua fennel)) (home-page "https://git.sr.ht/~technomancy/fnlfmt") (synopsis "Automatic formatting of Fennel code") (description "Fnlfmt is a tool for automatically formatting Fennel code in a consistent way, following established lisp conventions.") (license license:lgpl3+)))