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