mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
89 lines
1.9 KiB
Nix
89 lines
1.9 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
gnupg,
|
|
gpgme,
|
|
isLuaJIT,
|
|
lib,
|
|
libgit2,
|
|
libgpg-error,
|
|
lua,
|
|
nix,
|
|
openssl,
|
|
pkg-config,
|
|
rustPlatform,
|
|
}:
|
|
let
|
|
luaMajorMinor = lib.take 2 (lib.splitVersion lua.version);
|
|
luaVersionDir = if isLuaJIT then "jit" else lib.concatStringsSep "." luaMajorMinor;
|
|
luaFeature = if isLuaJIT then "luajit" else "lua${lib.concatStringsSep "" luaMajorMinor}";
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lux-lua";
|
|
|
|
version = "0.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nvim-neorocks";
|
|
repo = "lux";
|
|
# NOTE: Lux's tags represent the lux-cli version, which may differ from the lux-lua version
|
|
tag = "v0.5.0";
|
|
hash = "sha256-maVnRaEuB8q7wUukDGwB4d+go+oerkoWsnb5swPagMY=";
|
|
};
|
|
|
|
buildAndTestSubdir = "lux-lua";
|
|
buildNoDefaultFeatures = true;
|
|
buildFeatures = [ luaFeature ];
|
|
|
|
cargoHash = "sha256-CWPHE+j6RDtVrnYzakKecIM5dXuHuWaWK+T9xFEdmz8=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gnupg
|
|
gpgme
|
|
libgit2
|
|
libgpg-error
|
|
lua
|
|
openssl
|
|
];
|
|
|
|
doCheck = false; # lux-lua tests are broken in nixpkgs
|
|
useNextest = true;
|
|
nativeCheckInputs = [
|
|
lua
|
|
nix
|
|
];
|
|
|
|
env = {
|
|
LIBGIT2_NO_VENDOR = 1;
|
|
LIBSSH2_SYS_USE_PKG_CONFIG = 1;
|
|
LUX_SKIP_IMPURE_TESTS = 1; # Disable impure unit tests
|
|
};
|
|
|
|
postBuild = ''
|
|
cargo xtask-${luaFeature} dist
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -v target/dist/${luaVersionDir}/* -t $out/${luaVersionDir}
|
|
install -D -v target/dist/lib/pkgconfig/* -t $out/lib/pkgconfig
|
|
runHook postInstall
|
|
'';
|
|
|
|
cargoTestFlags = "--lib"; # Disable impure integration tests
|
|
|
|
meta = {
|
|
description = "Lua API for the Lux package manager";
|
|
homepage = "https://nvim-neorocks.github.io/";
|
|
changelog = "https://github.com/nvim-neorocks/lux/blob/${src.tag}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
mrcjkb
|
|
];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|