mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
673f4c52f4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/duktape/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.2.1 with grep in /nix/store/8clll9a9f797fd0vxz3vmx641mpqzkkx-duktape-2.2.1 - directory tree listing: https://gist.github.com/6049cc6fc921f7fa2efb27f86c1c7ca6
33 lines
905 B
Nix
33 lines
905 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "duktape-${version}";
|
|
version = "2.2.1";
|
|
src = fetchurl {
|
|
url = "http://duktape.org/duktape-${version}.tar.xz";
|
|
sha256 = "1wp7mpkhizknq72ivdbkzps4radi1daqzjcjp1i54c2k4pnjxgis";
|
|
};
|
|
|
|
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
|
|
'';
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An embeddable Javascript engine, with a focus on portability and compact footprint";
|
|
homepage = "http://duktape.org/";
|
|
downloadPage = "http://duktape.org/download.html";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.fgaz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|