nixpkgs/pkgs/top-level/lua-packages.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

255 lines
6.8 KiB
Nix

/*
This file defines the composition for Lua packages. It has
been factored out of all-packages.nix because there are many of
them. Also, because most Nix expressions for Lua packages are
trivial, most are actually defined here. I.e. there's no function
for each package in a separate file: the call to the function would
be almost as must code as the function itself.
*/
{
pkgs,
stdenv,
lib,
lua,
}:
self:
let
inherit (self) callPackage;
buildLuaApplication = args: buildLuarocksPackage ({ namePrefix = ""; } // args);
buildLuarocksPackage = lib.makeOverridable (
callPackage ../development/interpreters/lua-5/build-luarocks-package.nix { }
);
luaLib = callPackage ../development/lua-modules/lib.nix { };
#define build lua package function
buildLuaPackage = callPackage ../development/lua-modules/generic { };
getPath =
drv: pathListForVersion: lib.concatMapStringsSep ";" (path: "${drv}/${path}") pathListForVersion;
in
rec {
# Dont take luaPackages from "global" pkgs scope to avoid mixing lua versions
luaPackages = self;
# helper functions for dealing with LUA_PATH and LUA_CPATH
inherit luaLib;
getLuaPath = drv: getPath drv luaLib.luaPathList;
getLuaCPath = drv: getPath drv luaLib.luaCPathList;
inherit (callPackage ../development/interpreters/lua-5/hooks { })
luarocksMoveDataFolder
luarocksCheckHook
;
inherit lua;
inherit buildLuaPackage buildLuarocksPackage buildLuaApplication;
inherit (luaLib)
luaOlder
luaAtLeast
isLua51
isLua52
isLua53
isLuaJIT
requiredLuaModules
toLuaModule
hasLuaModule
;
# wraps programs in $out/bin with valid LUA_PATH/LUA_CPATH
wrapLua = callPackage ../development/interpreters/lua-5/wrap-lua.nix {
inherit (pkgs.buildPackages) makeSetupHook makeWrapper;
};
luarocks_bootstrap = toLuaModule (callPackage ../development/tools/misc/luarocks/default.nix { });
# a fork of luarocks used to generate nix lua derivations from rockspecs
luarocks-nix = toLuaModule (callPackage ../development/tools/misc/luarocks/luarocks-nix.nix { });
lua-pam = callPackage (
{
fetchFromGitHub,
linux-pam,
openpam,
}:
buildLuaPackage rec {
pname = "lua-pam";
version = "unstable-2015-07-03";
# Needed for `disabled`, overridden in buildLuaPackage
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "devurandom";
repo = "lua-pam";
rev = "3818ee6346a976669d74a5cbc2a83ad2585c5953";
hash = "sha256-YlMZ5mM9Ij/9yRmgA0X1ahYVZMUx8Igj5OBvAMskqTg=";
fetchSubmodules = true;
};
# The makefile tries to link to `-llua<luaversion>`
LUA_LIBS = "-llua";
buildInputs =
lib.optionals stdenv.hostPlatform.isLinux [ linux-pam ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ openpam ];
installPhase = ''
runHook preInstall
install -Dm755 pam.so $out/lib/lua/${lua.luaversion}/pam.so
runHook postInstall
'';
# The package does not build with lua 5.4 or luaJIT
disabled = luaAtLeast "5.4" || isLuaJIT;
meta = with lib; {
description = "Lua module for PAM authentication";
homepage = "https://github.com/devurandom/lua-pam";
license = licenses.mit;
maintainers = with maintainers; [ traxys ];
};
}
) { };
lua-resty-core = callPackage (
{ fetchFromGitHub }:
buildLuaPackage rec {
pname = "lua-resty-core";
version = "0.1.28";
src = fetchFromGitHub {
owner = "openresty";
repo = "lua-resty-core";
rev = "v${version}";
sha256 = "sha256-RJ2wcHTu447wM0h1fa2qCBl4/p9XL6ZqX9pktRW64RI=";
};
propagatedBuildInputs = [ lua-resty-lrucache ];
meta = with lib; {
description = "New FFI-based API for lua-nginx-module";
homepage = "https://github.com/openresty/lua-resty-core";
license = licenses.bsd3;
maintainers = [ ];
};
}
) { };
lua-resty-lrucache = callPackage (
{ fetchFromGitHub }:
buildLuaPackage rec {
pname = "lua-resty-lrucache";
version = "0.13";
src = fetchFromGitHub {
owner = "openresty";
repo = "lua-resty-lrucache";
rev = "v${version}";
sha256 = "sha256-J8RNAMourxqUF8wPKd8XBhNwGC/x1KKvrVnZtYDEu4Q=";
};
meta = with lib; {
description = "Lua-land LRU Cache based on LuaJIT FFI";
homepage = "https://github.com/openresty/lua-resty-lrucache";
license = licenses.bsd3;
maintainers = [ ];
};
}
) { };
luxio = callPackage (
{
fetchurl,
which,
pkg-config,
}:
buildLuaPackage rec {
pname = "luxio";
version = "13";
src = fetchurl {
url = "https://git.gitano.org.uk/luxio.git/snapshot/luxio-luxio-${version}.tar.bz2";
sha256 = "1hvwslc25q7k82rxk461zr1a2041nxg7sn3sw3w0y5jxf0giz2pz";
};
nativeBuildInputs = [
which
pkg-config
];
postPatch = ''
patchShebangs const-proc.lua
'';
preBuild = ''
makeFlagsArray=(
INST_LIBDIR="$out/lib/lua/${lua.luaversion}"
INST_LUADIR="$out/share/lua/${lua.luaversion}"
LUA_BINDIR="$out/bin"
INSTALL=install
);
'';
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
description = "Lightweight UNIX I/O and POSIX binding for Lua";
homepage = "https://www.gitano.org.uk/luxio/";
license = licenses.mit;
maintainers = with maintainers; [ richardipsum ];
platforms = platforms.unix;
};
}
) { };
nfd = callPackage ../development/lua-modules/nfd {
inherit (pkgs) zenity;
inherit (pkgs.darwin.apple_sdk.frameworks) AppKit;
};
vicious = callPackage (
{ fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "vicious";
version = "2.6.0";
src = fetchFromGitHub {
owner = "vicious-widgets";
repo = "vicious";
rev = "v${version}";
sha256 = "sha256-VlJ2hNou2+t7eSyHmFkC2xJ92OH/uJ/ewYHkFLQjUPQ=";
};
buildInputs = [ lua ];
installPhase = ''
mkdir -p $out/lib/lua/${lua.luaversion}/
cp -r . $out/lib/lua/${lua.luaversion}/vicious/
printf "package.path = '$out/lib/lua/${lua.luaversion}/?/init.lua;' .. package.path\nreturn require((...) .. '.init')\n" > $out/lib/lua/${lua.luaversion}/vicious.lua
'';
meta = with lib; {
description = "Modular widget library for the awesome window manager";
homepage = "https://vicious.rtfd.io";
changelog = "https://vicious.rtfd.io/en/v${version}/changelog.html";
license = licenses.gpl2Plus;
maintainers = with maintainers; [
makefu
mic92
McSinyx
];
platforms = platforms.linux;
};
}
) { };
}