nixpkgs/pkgs/development/tools/misc/luarocks/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

118 lines
3.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, curl
, makeWrapper
, which
, unzip
, lua
, file
, nix-prefetch-git
# for 'luarocks pack'
, zip
, nix-update-script
# some packages need to be compiled with cmake
, cmake
2021-09-02 20:57:06 +00:00
, installShellFiles
}:
2023-04-16 20:53:09 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "luarocks";
2022-09-04 17:16:18 +00:00
version = "3.9.1";
2019-09-06 11:26:06 +00:00
src = fetchFromGitHub {
owner = "luarocks";
repo = "luarocks";
2023-04-16 20:53:09 +00:00
rev = "v${finalAttrs.version}";
2022-09-04 17:16:18 +00:00
sha256 = "sha256-G6HDap3pspeQtGDBq+ukN7kftDaT/CozMVdYM60F6HI=";
2013-06-07 10:01:22 +00:00
};
patches = [
./darwin-3.7.0.patch
# follow standard environmental variables
# https://github.com/luarocks/luarocks/pull/1433
(fetchpatch {
url = "https://github.com/luarocks/luarocks/commit/d719541577a89909185aa8de7a33cf73b7a63ac3.diff";
sha256 = "sha256-rMnhZFqLEul0wnsxvw9nl6JXVanC5QgOZ+I/HJ0vRCM=";
})
];
postPatch = lib.optionalString stdenv.targetPlatform.isDarwin ''
substituteInPlace src/luarocks/core/cfg.lua --subst-var-by 'darwinMinVersion' '${stdenv.targetPlatform.darwinMinVersion}'
'';
# Manually written ./configure does not support --build= or --host=:
# Error: Unknown flag: --build=x86_64-unknown-linux-gnu
configurePlatforms = [ ];
2014-08-14 06:14:12 +00:00
preConfigure = ''
lua -e "" || {
luajit -e "" && {
export LUA_SUFFIX=jit
configureFlags="$configureFlags --lua-suffix=$LUA_SUFFIX"
}
2014-08-14 06:14:12 +00:00
}
lua_inc="$(echo "${lua}/include"/*/)"
if test -n "$lua_inc"; then
configureFlags="$configureFlags --with-lua-include=$lua_inc"
fi
'';
2022-08-22 22:45:37 +00:00
nativeBuildInputs = [ makeWrapper installShellFiles lua unzip ];
2021-09-02 20:57:06 +00:00
2022-08-22 22:45:37 +00:00
buildInputs = [ curl which ];
2014-08-14 06:14:12 +00:00
postInstall = ''
sed -e "1s@.*@#! ${lua}/bin/lua$LUA_SUFFIX@" -i "$out"/bin/*
substituteInPlace $out/etc/luarocks/* \
--replace '${lua.luaOnBuild}' '${lua}'
2022-08-22 22:45:37 +00:00
2014-08-14 06:14:12 +00:00
for i in "$out"/bin/*; do
test -L "$i" || {
wrapProgram "$i" \
--suffix LUA_PATH ";" "$(echo "$out"/share/lua/*/)?.lua" \
--suffix LUA_PATH ";" "$(echo "$out"/share/lua/*/)?/init.lua" \
--suffix LUA_CPATH ";" "$(echo "$out"/lib/lua/*/)?.so" \
--suffix LUA_CPATH ";" "$(echo "$out"/share/lua/*/)?/init.lua" \
--suffix PATH : ${lib.makeBinPath ([ unzip ] ++
2023-04-16 20:53:09 +00:00
lib.optionals (finalAttrs.pname == "luarocks-nix") [ file nix-prefetch-git ])}
}
2014-08-14 06:14:12 +00:00
done
2022-08-22 22:45:37 +00:00
'' + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd luarocks \
--bash <($out/bin/luarocks completion bash) \
--fish <($out/bin/luarocks completion fish) \
--zsh <($out/bin/luarocks completion zsh)
2014-08-14 06:14:12 +00:00
'';
propagatedBuildInputs = [ zip unzip cmake ];
# unpack hook for src.rock and rockspec files
setupHook = ./setup-hook.sh;
# cmake is just to compile packages with "cmake" buildType, not luarocks itself
dontUseCmakeConfigure = true;
shellHook = ''
export PATH="src/bin:''${PATH:-}"
export LUA_PATH="src/?.lua;''${LUA_PATH:-}"
'';
disallowedReferences = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
lua.luaOnBuild
];
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "A package manager for Lua";
license = licenses.mit;
maintainers = with maintainers; [ raskin teto ];
platforms = platforms.linux ++ platforms.darwin;
downloadPage = "http://luarocks.org/releases/";
2013-06-07 10:01:22 +00:00
};
})