1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/development/interpreters/duktape/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2018-01-26 11:26:52 +00:00
stdenv.mkDerivation rec {
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
};
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/
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 ];
2021-03-08 14:48:12 +00:00
platforms = platforms.all;
2018-01-26 11:26:52 +00:00
};
}