2014-09-15 21:54:02 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, e19 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "terminology-${version}";
|
2015-02-26 19:03:35 +01:00
|
|
|
version = "0.8.0";
|
2014-09-15 21:54:02 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.gz";
|
2015-02-26 19:03:35 +01:00
|
|
|
sha256 = "7a10d44b023cf6134c2483304e4ad33bea6df0f11266aec482f54fa67a3ce628";
|
2014-09-15 21:54:02 +02:00
|
|
|
};
|
|
|
|
buildInputs = [ pkgconfig e19.efl e19.elementary ];
|
|
|
|
preConfigure = ''
|
|
|
|
export NIX_CFLAGS_COMPILE="-I${e19.efl}/include/eo-1 $NIX_CFLAGS_COMPILE"
|
|
|
|
export NIX_CFLAGS_COMPILE="-I${e19.efl}/include/ecore-con-1 $NIX_CFLAGS_COMPILE"
|
|
|
|
export NIX_CFLAGS_COMPILE="-I${e19.efl}/include/eldbus-1 $NIX_CFLAGS_COMPILE"
|
|
|
|
export NIX_CFLAGS_COMPILE="-I${e19.efl}/include/ethumb-1 $NIX_CFLAGS_COMPILE"
|
2015-03-02 23:22:15 +01:00
|
|
|
export NIX_CFLAGS_COMPILE="-I${e19.efl}/include/elocation-1 $NIX_CFLAGS_COMPILE"
|
2014-09-15 21:54:02 +02:00
|
|
|
'';
|
|
|
|
meta = {
|
|
|
|
description = "The best terminal emulator written with the EFL";
|
|
|
|
homepage = http://enlightenment.org/;
|
2014-10-19 14:58:04 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ];
|
2014-09-15 21:54:02 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|