about summary refs log tree commit diff
path: root/pkgs/development/emilua-plugins/this-thread/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/emilua-plugins/this-thread/default.nix')
-rw-r--r--pkgs/development/emilua-plugins/this-thread/default.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/development/emilua-plugins/this-thread/default.nix b/pkgs/development/emilua-plugins/this-thread/default.nix
new file mode 100644
index 000000000000..1430359d133c
--- /dev/null
+++ b/pkgs/development/emilua-plugins/this-thread/default.nix
@@ -0,0 +1,60 @@
+{
+  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.0";
+
+  src = fetchFromGitLab {
+    owner = "emilua";
+    repo = "this-thread";
+    rev = "v${version}";
+    hash = "sha256-JmAe69heZ406LE2aaSxQXJYu/iv1cS90KHecQJYoiKQ=";
+  };
+
+  buildInputs = [
+    emilua
+    liburing
+    fmt
+    luajit_openresty
+    openssl
+    boost
+  ];
+
+  nativeBuildInputs = [
+    gperf
+    gawk
+    pkg-config
+    asciidoctor
+    meson
+    ninja
+  ];
+
+  passthru = {
+    updateScript = gitUpdater { rev-prefix = "v"; };
+  };
+
+  meta = with lib; {
+    description = "Access C++'s this_thread from Lua";
+    homepage = "https://emilua.org/";
+    license = licenses.mit;
+    maintainers = with maintainers; [ manipuladordedados ];
+    platforms = platforms.linux;
+  };
+}