summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-05-02 13:47:36 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-05-02 14:00:45 +0200
commitd7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca (patch)
tree198c0320f06302d9a4aeb491304cdd98847267a0 /pkgs/desktops/enlightenment
parent9ad1aaae5337bb55df9c64636d2c8b7f97381dd1 (diff)
downloadnixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.tar
nixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.tar.gz
nixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.tar.bz2
nixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.tar.lz
nixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.tar.xz
nixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.tar.zst
nixpkgs-d7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca.zip
luajit: 2.1.0-beta2 -> 2.1.0-beta3
The removal of `luaL_reg` alias caused lots of breakage.
Only sysdig and knot-resolver needed (also) other changes.
Diffstat (limited to 'pkgs/desktops/enlightenment')
-rw-r--r--pkgs/desktops/enlightenment/efl.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix
index 32b2fe31a5e..2b92e366296 100644
--- a/pkgs/desktops/enlightenment/efl.nix
+++ b/pkgs/desktops/enlightenment/efl.nix
@@ -61,6 +61,8 @@ stdenv.mkDerivation rec {
     source "$setupHook"
   '';
 
+  NIX_CFLAGS_COMPILE = [ "-DluaL_reg=luaL_Reg" ]; # needed since luajit-2.1.0-beta3
+
   postInstall = ''
     substituteInPlace "$out/share/elua/core/util.lua" --replace '$out' "$out"
     modules=$(for i in "$out/include/"*/; do printf ' -I''${includedir}/'`basename $i`; done)