24 lines
984 B
Nix
24 lines
984 B
Nix
{ stdenv, fetchurl, pkgconfig, e19 }:
|
|
stdenv.mkDerivation rec {
|
|
name = "terminology-${version}";
|
|
version = "0.7.0";
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.gz";
|
|
sha256 = "1x248dh9r292r8ycvf43vrfk4l8wpli50sgywp0zy3q93f8ljgs5";
|
|
};
|
|
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"
|
|
'';
|
|
meta = {
|
|
description = "The best terminal emulator written with the EFL";
|
|
homepage = http://enlightenment.org/;
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
};
|
|
}
|