about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-12-25 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-12-25 04:20:00 +0000
commite7ab3d878c3ec321446d7d248cc56632e6792e1d (patch)
tree9a2cb38405a15973d84e483184ad54877ea601e2 /pkgs
parentb45547a0a2b0e8064c445a50aaedc7f3b27e8ff7 (diff)
downloadnixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.tar
nixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.tar.gz
nixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.tar.bz2
nixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.tar.lz
nixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.tar.xz
nixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.tar.zst
nixlib-e7ab3d878c3ec321446d7d248cc56632e6792e1d.zip
quickjs-ng: init at 0.3.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/qu/quickjs-ng/package.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/pkgs/by-name/qu/quickjs-ng/package.nix b/pkgs/by-name/qu/quickjs-ng/package.nix
new file mode 100644
index 000000000000..13e728b4b66b
--- /dev/null
+++ b/pkgs/by-name/qu/quickjs-ng/package.nix
@@ -0,0 +1,53 @@
+{ lib
+, stdenv
+, cmake
+, fetchFromGitHub
+, testers
+, texinfo
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "quickjs-ng";
+  version = "0.3.0";
+
+  src = fetchFromGitHub {
+    owner = "quickjs-ng";
+    repo = "quickjs";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-4nFc9xdxrfRWeOY9VNQAI4Ph7G1GMnw06XZiO6xA72o=";
+  };
+
+  outputs = [ "bin" "out" "dev" "doc" "info" ];
+
+  nativeBuildInputs = [
+    cmake
+    texinfo
+  ];
+
+  cmakeFlags = [
+    "-DBUILD_SHARED_LIBS=ON"
+    (lib.cmakeBool "BUILD_STATIC_QJS_EXE" stdenv.hostPlatform.isStatic)
+  ];
+
+  postInstall = ''
+    (cd ../doc
+     makeinfo --output quickjs.info quickjs.texi
+     install -Dt $info/share/info/ quickjs.info)
+  '';
+
+  passthru.tests = {
+    version = testers.testVersion {
+      package = finalAttrs.finalPackage;
+      command = "qjs --help || true";
+    };
+  };
+
+  meta = with lib; {
+    description = "A mighty JavaScript engine";
+    homepage = "https://github.com/quickjs-ng/quickjs";
+    license = licenses.mit;
+    maintainers = with maintainers; [ marsam ];
+    platforms = platforms.all;
+    mainProgram = "qjs";
+  };
+})