terminology: adapt for efl-1.18.0

+17 -2
+17 -2
pkgs/desktops/enlightenment/terminology.nix
··· 1 - { stdenv, fetchurl, pkgconfig, efl, elementary }: 1 + { stdenv, fetchurl, pkgconfig, efl }: 2 + 2 3 stdenv.mkDerivation rec { 3 4 name = "terminology-${version}"; 4 5 version = "0.9.1"; 6 + 5 7 src = fetchurl { 6 8 url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; 7 9 sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc"; 8 10 }; 9 - buildInputs = [ pkgconfig efl elementary ]; 11 + 12 + nativeBuildInputs = [ pkgconfig ]; 13 + 14 + buildInputs = [ efl ]; 15 + 16 + NIX_CFLAGS_COMPILE = [ 17 + "-I${efl}/include/ecore-con-1" 18 + "-I${efl}/include/eldbus-1" 19 + "-I${efl}/include/elocation-1" 20 + "-I${efl}/include/emile-1" 21 + "-I${efl}/include/eo-1" 22 + "-I${efl}/include/ethumb-1" 23 + ]; 24 + 10 25 meta = { 11 26 description = "The best terminal emulator written with the EFL"; 12 27 homepage = http://enlightenment.org/;