about summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment/terminology.nix
blob: a302b7d5f61235b02ed0f6f4ebefd27e24203976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
  };
}