duktape: fix installation of shared libraries

Now using `make install` to ensure the non-versioned and major-versioned
library symlinks are created.
This commit is contained in:
Max Zerzouri 2018-03-15 19:58:30 +13:00
parent 3d509de00b
commit f2032af769

View file

@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
install -d $out/bin
install -m755 duk $out/bin/
install -d $out/lib
install -m755 libduktape* $out/lib/
install -d $out/include
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
'';
enableParallelBuilding = true;