567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
61 lines
957 B
Nix
61 lines
957 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
meson,
|
|
ninja,
|
|
fetchFromGitLab,
|
|
gperf,
|
|
gawk,
|
|
gitUpdater,
|
|
pkg-config,
|
|
boost,
|
|
luajit_openresty,
|
|
asciidoctor,
|
|
emilua,
|
|
liburing,
|
|
openssl,
|
|
fmt,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "emilua-this-thread";
|
|
version = "1.0.3";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "emilua";
|
|
repo = "this-thread";
|
|
rev = "v${version}";
|
|
hash = "sha256-3f2nB6KwNka0P7jnvMZF2+ExuTmICj2NswmRWB+YDKo=";
|
|
};
|
|
|
|
buildInputs = [
|
|
emilua
|
|
liburing
|
|
fmt
|
|
luajit_openresty
|
|
openssl
|
|
boost
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gperf
|
|
gawk
|
|
pkg-config
|
|
asciidoctor
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
|
};
|
|
|
|
meta = {
|
|
description = "Access C++'s this_thread from Lua";
|
|
homepage = "https://emilua.org/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ manipuladordedados ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|