nixpkgs/pkgs/development/interpreters/emilua/default.nix
Artturin cde3f1cada treewide: Remove now unnecessary boost vars
`meson` now finds `boost` using `pkg-config`
2024-07-04 11:01:15 +02:00

109 lines
2.0 KiB
Nix

{
lib,
stdenv,
meson,
ninja,
fetchFromGitHub,
fetchFromGitLab,
re2c,
gperf,
gawk,
pkg-config,
boost182,
fmt,
luajit_openresty,
ncurses,
serd,
sord,
libcap,
liburing,
openssl,
cereal,
cmake,
asciidoctor,
makeWrapper,
}:
let
trial-protocol-wrap = fetchFromGitHub {
owner = "breese";
repo = "trial.protocol";
rev = "79149f604a49b8dfec57857ca28aaf508069b669";
name = "trial-protocol";
hash = "sha256-Xd8bX3z9PZWU17N9R95HXdj6qo9at5FBL/+PTVaJgkw=";
};
in
stdenv.mkDerivation rec {
pname = "emilua";
version = "0.7.3";
src = fetchFromGitLab {
owner = "emilua";
repo = "emilua";
rev = "v${version}";
hash = "sha256-j8ohhqHjSBgc4Xk9PcQNrbADmsz4VH2zCv+UNqiCv4I=";
};
buildInputs = [
luajit_openresty
boost182
fmt
ncurses
serd
sord
libcap
liburing
openssl
cereal
];
nativeBuildInputs = [
re2c
gperf
gawk
pkg-config
asciidoctor
meson
cmake
ninja
makeWrapper
];
dontUseCmakeConfigure = true;
mesonFlags = [
(lib.mesonBool "enable_file_io" true)
(lib.mesonBool "enable_io_uring" true)
(lib.mesonBool "enable_tests" true)
(lib.mesonBool "enable_manpages" true)
(lib.mesonOption "version_suffix" "-nixpkgs1")
];
postPatch = ''
pushd subprojects
cp -r ${trial-protocol-wrap} trial-protocol
chmod +w trial-protocol
cp "packagefiles/trial.protocol/meson.build" "trial-protocol/"
popd
patchShebangs src/emilua_gperf.awk --interpreter '${lib.getExe gawk} -f'
'';
doCheck = true;
mesonCheckFlags = [
# Skipped test: libpsx
# Known issue with no-new-privs disabled in the Nix build environment.
"--no-suite" "libpsx"
];
meta = with lib; {
description = "Lua execution engine";
mainProgram = "emilua";
homepage = "https://emilua.org/";
license = licenses.boost;
maintainers = with maintainers; [ manipuladordedados ];
platforms = platforms.linux;
};
}