nixpkgs/pkgs/development/interpreters/duktape/default.nix

33 lines
893 B
Nix
Raw Normal View History

2018-01-26 11:26:52 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "duktape";
2019-08-01 18:20:16 +01:00
version = "2.4.0";
2018-01-26 11:26:52 +00:00
src = fetchurl {
url = "http://duktape.org/duktape-${version}.tar.xz";
2019-08-01 18:20:16 +01:00
sha256 = "1z3i0ymnkk6q48bmbgh59g1ryrwjdv46vrf6nbnmqfv3s43r7a46";
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
install -d $out/include
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
2018-01-26 11:26:52 +00:00
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "An embeddable Javascript engine, with a focus on portability and compact footprint";
2019-01-15 16:18:14 +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 ];
platforms = platforms.linux;
};
}