{ stdenv, fetchurl, pkgconfig, efl }: stdenv.mkDerivation rec { name = "terminology-${version}"; version = "1.0.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; sha256 = "1x4j2q4qqj10ckbka0zaq2r2zm66ff1x791kp8slv1ff7fw45vdz"; }; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ efl ]; NIX_CFLAGS_COMPILE = [ "-I${efl}/include/ecore-con-1" "-I${efl}/include/eldbus-1" "-I${efl}/include/elocation-1" "-I${efl}/include/emile-1" "-I${efl}/include/eo-1" "-I${efl}/include/ethumb-1" ]; meta = { description = "The best terminal emulator written with the EFL"; homepage = http://enlightenment.org/; platforms = stdenv.lib.platforms.linux; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ]; }; }