2013-03-31 13:46:37 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, elementary, eina, eet, evas, edje, emotion, ecore, ethumb, efreet }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "terminology-${version}";
|
2014-06-15 01:07:06 +02:00
|
|
|
version = "0.5.1";
|
2013-03-31 13:46:37 +02:00
|
|
|
src = fetchurl {
|
2014-02-17 08:23:49 +01:00
|
|
|
url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.gz";
|
2014-06-15 01:07:06 +02:00
|
|
|
sha256 = "1b8m6fhzx2fdr3m6ak2163v33zc4svmg2k875m0xppzifdd9xvyf";
|
2013-03-31 13:46:37 +02:00
|
|
|
};
|
|
|
|
buildInputs = [ pkgconfig elementary eina eet evas ecore edje emotion ecore ethumb efreet ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Terminology, the E17 terminal emulator";
|
|
|
|
homepage = http://www.enlightenment.org/p.php?p=about/terminology;
|
|
|
|
license = stdenv.lib.licenses.bsd2; # not sure
|
|
|
|
};
|
|
|
|
}
|