2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig
|
2018-12-25 23:15:46 +00:00
|
|
|
, gnome3, glib, gtk3, ncurses, gobject-introspection, vala, libxml2, gnutls
|
2018-07-21 01:44:44 +01:00
|
|
|
, gperf, pcre2
|
2016-09-18 20:35:23 +01:00
|
|
|
}:
|
|
|
|
|
2016-09-29 13:20:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-25 23:15:46 +00:00
|
|
|
pname = "vte";
|
2019-05-10 09:56:35 +01:00
|
|
|
version = "0.56.3";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-25 23:15:46 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-05-10 09:56:35 +01:00
|
|
|
sha256 = "0j166gic5znssdb9r45qazq4kb4v9fial82czand5wa8i2yd988p";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
2018-12-25 23:15:46 +00:00
|
|
|
updateScript = gnome3.updateScript { packageName = pname; };
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ gobject-introspection intltool pkgconfig vala gperf libxml2 ];
|
2018-12-25 23:15:46 +00:00
|
|
|
buildInputs = [ glib gtk3 ncurses ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-08-09 03:54:17 +01:00
|
|
|
propagatedBuildInputs = [
|
2018-08-09 14:44:20 +01:00
|
|
|
# Required by vte-2.91.pc.
|
2018-12-25 23:15:46 +00:00
|
|
|
gtk3
|
2018-08-09 03:54:17 +01:00
|
|
|
gnutls
|
|
|
|
pcre2
|
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
preConfigure = "patchShebangs .";
|
|
|
|
|
2017-04-20 22:41:05 +01:00
|
|
|
configureFlags = [ "--enable-introspection" "--disable-Bsymbolic" ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://www.gnome.org/;
|
2016-09-18 20:35:23 +01:00
|
|
|
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 = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ astsmtl antono lethalman ];
|
2017-04-20 22:41:05 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
2016-09-29 13:20:14 +01:00
|
|
|
}
|
2016-09-18 20:35:23 +01:00
|
|
|
|