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

33 lines
895 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2018-01-26 11:26:52 +00:00
stdenv.mkDerivation rec {
pname = "duktape";
2020-10-24 16:03:19 +00: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 16:03:19 +00: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
install -d $out/include
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
2018-01-26 11:26:52 +00:00
'';
enableParallelBuilding = true;
meta = with lib; {
2018-01-26 11:26:52 +00:00
description = "An embeddable Javascript engine, with a focus on portability and compact footprint";
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;
};
}