summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2.28/desktop/vte/default.nix
blob: b7d93622c7d6a7c730301702e409579d625e7b09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchurl, intltool, pkgconfig, glib, gtk, ncurses
, pythonSupport ? false, python}:

stdenv.mkDerivation rec {
  name = "vte-0.25.1";
  
  src = fetchurl {
    url = "http://ftp.gnome.org/pub/gnome/sources/vte/0.25/${name}.tar.bz2";
    sha256 = "105f5ifyg09nh5p6fw2w7c0n9wd8vw9cvwlh6zg49ibsar893qi5";
  };

  patches = [ ./cursor.patch ];
  
  buildInputs = [ intltool pkgconfig glib gtk ncurses ] ++
                stdenv.lib.optional pythonSupport python;
                
  configureFlags = ''
    ${if pythonSupport then "--enable-python" else "--disable-python"}
  '';
  
  meta = {
    homepage = http://www.gnome.org/;
    description = "A library implementing a terminal emulator widget for GTK+";
    longDescription = ''
      VTE is a library (libvte) implementing a terminal emulator widget for
      GTK+, and a minimal sample application (vte) using that.  Vte is
      mainly used in gnome-terminal, but can also be used to embed a
      console/terminal in games, editors, IDEs, etc. VTE supports Unicode and
      character set conversion, as well as emulating any terminal known to
      the system's terminfo database.
    '';
    license = "LGPLv2";
    maintainers = with stdenv.lib.maintainers; [ astsmtl ];
    platforms = with stdenv.lib.platforms; linux;
  };
}