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