2021-01-23 13:15:07 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-01-26 11:26:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "duktape";
|
2020-10-24 17:03:19 +01:00
|
|
|
version = "2.6.0";
|
2018-01-26 11:26:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://duktape.org/duktape-${version}.tar.xz";
|
2020-10-24 17:03:19 +01:00
|
|
|
sha256 = "19szwxzvl2g65fw95ggvb8h0ma5bd9vvnnccn59hwnc4dida1x4n";
|
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/
|
|
|
|
install -d $out/lib
|
2018-03-15 06:58:30 +00:00
|
|
|
install -d $out/include
|
|
|
|
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
|
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 02:11:51 +01: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 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|