2021-06-14 09:48:15 +00:00
|
|
|
{ lib, stdenv, fetchurl, validatePkgConfig }:
|
2018-01-26 11:26:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "duktape";
|
2022-02-21 06:09:57 +00:00
|
|
|
version = "2.7.0";
|
2018-01-26 11:26:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://duktape.org/duktape-${version}.tar.xz";
|
2022-02-21 06:09:57 +00:00
|
|
|
sha256 = "sha256-kPjS+otVZ8aJmDDd7ywD88J5YLEayiIvoXqnrGE8KJA=";
|
2018-01-26 11:26:52 +00:00
|
|
|
};
|
|
|
|
|
2021-06-14 09:48:15 +00:00
|
|
|
nativeBuildInputs = [ validatePkgConfig ];
|
|
|
|
|
2021-03-08 14:48:12 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.sharedlibrary \
|
|
|
|
--replace 'gcc' '${stdenv.cc.targetPrefix}cc' \
|
|
|
|
--replace 'g++' '${stdenv.cc.targetPrefix}c++'
|
|
|
|
substituteInPlace Makefile.cmdline \
|
|
|
|
--replace 'gcc' '${stdenv.cc.targetPrefix}cc' \
|
|
|
|
--replace 'g++' '${stdenv.cc.targetPrefix}c++'
|
|
|
|
'';
|
2018-01-26 11:26:52 +00:00
|
|
|
buildPhase = ''
|
|
|
|
make -f Makefile.sharedlibrary
|
|
|
|
make -f Makefile.cmdline
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
install -d $out/bin
|
|
|
|
install -m755 duk $out/bin/
|
2021-06-14 09:48:15 +00:00
|
|
|
install -d $out/lib/pkgconfig
|
2018-03-15 06:58:30 +00:00
|
|
|
install -d $out/include
|
|
|
|
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
|
2021-06-14 09:48:15 +00:00
|
|
|
substituteAll ${./duktape.pc.in} $out/lib/pkgconfig/duktape.pc
|
2018-01-26 11:26:52 +00:00
|
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-23 13:15:07 +00:00
|
|
|
meta = with lib; {
|
2018-01-26 11:26:52 +00:00
|
|
|
description = "An embeddable Javascript engine, with a focus on portability and compact footprint";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://duktape.org/";
|
|
|
|
downloadPage = "https://duktape.org/download.html";
|
2018-01-26 11:26:52 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.fgaz ];
|
2021-03-08 14:48:12 +00:00
|
|
|
platforms = platforms.all;
|
2018-01-26 11:26:52 +00:00
|
|
|
};
|
|
|
|
}
|