about summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment/terminology.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/enlightenment/terminology.nix')
-rw-r--r--pkgs/desktops/enlightenment/terminology.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/desktops/enlightenment/terminology.nix b/pkgs/desktops/enlightenment/terminology.nix
new file mode 100644
index 000000000000..a302b7d5f612
--- /dev/null
+++ b/pkgs/desktops/enlightenment/terminology.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl, pkgconfig, efl, elementary }:
+stdenv.mkDerivation rec {
+  name = "terminology-${version}";
+  version = "0.9.1";
+  src = fetchurl {
+    url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz";
+    sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc";
+  };
+  buildInputs = [ pkgconfig efl elementary ];
+  meta = {
+    description = "The best terminal emulator written with the EFL";
+    homepage = http://enlightenment.org/;
+    maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
+    platforms = stdenv.lib.platforms.linux;
+    license = stdenv.lib.licenses.bsd2;
+  };
+}