mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
32741141c7
Signed-off-by: lucasew <lucas59356@gmail.com>
91 lines
1.6 KiB
Nix
91 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
asciidoctor,
|
|
ninja,
|
|
gperf,
|
|
gawk,
|
|
pkg-config,
|
|
boost,
|
|
luajit_openresty,
|
|
fmt,
|
|
meson,
|
|
emilua,
|
|
qt6Packages,
|
|
openssl,
|
|
liburing,
|
|
gitUpdater,
|
|
runCommand,
|
|
xvfb-run,
|
|
qt6, # this
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "emilua-qt6";
|
|
version = "1.0.3";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "emilua";
|
|
repo = "qt6";
|
|
rev = "v${version}";
|
|
hash = "sha256-azMnM17HQMzC0ExgWurQzbR3fX9EwBRSu4kVTm3U2Ic=";
|
|
};
|
|
|
|
buildInputs = with qt6Packages; [
|
|
qtbase
|
|
qtdeclarative
|
|
boost
|
|
luajit_openresty
|
|
emilua
|
|
fmt
|
|
openssl
|
|
liburing
|
|
];
|
|
|
|
nativeBuildInputs = with qt6Packages; [
|
|
qttools
|
|
wrapQtAppsHook
|
|
gperf
|
|
gawk
|
|
asciidoctor
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
|
tests.basic =
|
|
runCommand "test-basic-qt6"
|
|
{
|
|
buildInputs = [
|
|
emilua
|
|
qt6
|
|
qt6Packages.wrapQtAppsHook
|
|
qt6Packages.qtbase
|
|
qt6Packages.qtdeclarative
|
|
xvfb-run
|
|
];
|
|
dontWrapQtApps = true;
|
|
}
|
|
''
|
|
makeWrapper ${lib.getExe emilua} payload \
|
|
''${qtWrapperArgs[@]} \
|
|
--add-flags ${./basic_test.lua}
|
|
xvfb-run ./payload
|
|
touch $out
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Qt6 bindings for Emilua";
|
|
homepage = "https://emilua.org/";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [
|
|
manipuladordedados
|
|
lucasew
|
|
];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|