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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
Nix
Raw Normal View History

2021-06-14 09:48:15 +00:00
{ lib, stdenv, fetchurl, validatePkgConfig }:
2018-01-26 11:26:52 +00:00
stdenv.mkDerivation rec {
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
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;
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
};
}