summary refs log tree commit diff
path: root/pkgs/desktops/e19/efl-elua.patch
diff options
context:
space:
mode:
authorSiarhei Zirukin <ftrvxmtrx@gmail.com>2015-05-16 16:42:40 +0200
committerSiarhei Zirukin <ftrvxmtrx@gmail.com>2015-05-27 20:06:06 +0200
commit4fd635404d14aa7ef8d59df3e19298118e033c3a (patch)
treecd2e992015f6bc3e6df2fc54a764840290b54240 /pkgs/desktops/e19/efl-elua.patch
parentb3176951a190a1b18c0e089b65841f7105ea01ce (diff)
downloadnixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.tar
nixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.tar.gz
nixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.tar.bz2
nixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.tar.lz
nixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.tar.xz
nixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.tar.zst
nixpkgs-4fd635404d14aa7ef8d59df3e19298118e033c3a.zip
e19: updates for 1.14.0
- libraries and applications updated to the latest
- the "elementary getting started" (https://docs.enlightenment.org/auto/elementary/group__Start.html)
  works with just `pkg-config --cflags --libs elementary`
- switched from lua-old to elua
Diffstat (limited to 'pkgs/desktops/e19/efl-elua.patch')
-rw-r--r--pkgs/desktops/e19/efl-elua.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/desktops/e19/efl-elua.patch b/pkgs/desktops/e19/efl-elua.patch
new file mode 100644
index 00000000000..96c42b3ff3c
--- /dev/null
+++ b/pkgs/desktops/e19/efl-elua.patch
@@ -0,0 +1,14 @@
+--- ./src/scripts/elua/core/util.lua.old	2015-05-17 11:59:57.307743243 +0200
++++ ./src/scripts/elua/core/util.lua	2015-05-17 12:39:11.906797377 +0200
+@@ -159,7 +159,10 @@
+         local ev = os.getenv("ELUA_" .. libname:upper() .. "_LIBRARY_PATH")
+         local succ, v = load_lib(libname, ev)
+         if not succ then
+-            error(v, 2)
++            succ, v = load_lib(libname, "$out/lib")
++            if not succ then
++                error(v, 2)
++            end
+         end
+         lib = v
+         loaded_libs[libname] = lib