nixpkgs/pkgs/by-name/qu/quickjs-ng/package.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

58 lines
1.2 KiB
Nix

{ lib
, stdenv
, cmake
, fetchFromGitHub
, testers
, texinfo
}:
stdenv.mkDerivation (finalAttrs: {
pname = "quickjs-ng";
version = "0.5.0";
src = fetchFromGitHub {
owner = "quickjs-ng";
repo = "quickjs";
rev = "v${finalAttrs.version}";
hash = "sha256-4CC7IxA5t+L99H4Rvkx0xkXFHuqNP3HTmS46JEuy7Vs=";
};
outputs = [ "bin" "out" "dev" "doc" "info" ];
nativeBuildInputs = [
cmake
texinfo
];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
(lib.cmakeBool "BUILD_STATIC_QJS_EXE" stdenv.hostPlatform.isStatic)
];
env.NIX_CFLAGS_COMPILE = toString (lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
"-Wno-error=stringop-overflow"
]);
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 = "Mighty JavaScript engine";
homepage = "https://github.com/quickjs-ng/quickjs";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.all;
mainProgram = "qjs";
};
})