terminology: adapt for efl-1.18.0

+17 -2
+17 -2
pkgs/desktops/enlightenment/terminology.nix
··· 1 - { stdenv, fetchurl, pkgconfig, efl, elementary }: 2 stdenv.mkDerivation rec { 3 name = "terminology-${version}"; 4 version = "0.9.1"; 5 src = fetchurl { 6 url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; 7 sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc"; 8 }; 9 - buildInputs = [ pkgconfig efl elementary ]; 10 meta = { 11 description = "The best terminal emulator written with the EFL"; 12 homepage = http://enlightenment.org/;
··· 1 + { stdenv, fetchurl, pkgconfig, efl }: 2 + 3 stdenv.mkDerivation rec { 4 name = "terminology-${version}"; 5 version = "0.9.1"; 6 + 7 src = fetchurl { 8 url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; 9 sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc"; 10 }; 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 + 25 meta = { 26 description = "The best terminal emulator written with the EFL"; 27 homepage = http://enlightenment.org/;