2019-09-04 02:02:39 +02:00
|
|
|
{ stdenv
|
2019-10-21 21:30:02 +02:00
|
|
|
, lib
|
2019-09-04 02:02:39 +02:00
|
|
|
, fetchurl
|
2019-10-21 21:30:02 +02:00
|
|
|
, fetchpatch
|
2019-09-04 02:02:39 +02:00
|
|
|
, gettext
|
|
|
|
, pkgconfig
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, gnome3
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, gobject-introspection
|
|
|
|
, vala
|
|
|
|
, libxml2
|
|
|
|
, gnutls
|
|
|
|
, gperf
|
|
|
|
, pango
|
|
|
|
, pcre2
|
|
|
|
, fribidi
|
|
|
|
, zlib
|
2020-02-09 00:08:44 +01:00
|
|
|
, icu
|
|
|
|
, systemd
|
2016-09-18 21:35:23 +02:00
|
|
|
}:
|
|
|
|
|
2016-09-29 14:20:14 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-26 00:15:46 +01:00
|
|
|
pname = "vte";
|
2020-05-03 15:23:36 +02:00
|
|
|
version = "0.60.2";
|
2019-09-04 02:02:39 +02:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-26 00:15:46 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-05-03 15:23:36 +02:00
|
|
|
sha256 = "19ccbw0yca78h5qcnm8claj4fg1pj68nj1fsjqqfpzhj7w72i81m";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
2018-12-26 00:15:46 +01:00
|
|
|
updateScript = gnome3.updateScript { packageName = pname; };
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2019-09-04 02:02:39 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
gperf
|
|
|
|
libxml2
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
vala
|
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2019-09-04 02:02:39 +02:00
|
|
|
buildInputs = [
|
|
|
|
fribidi
|
2018-08-09 04:54:17 +02:00
|
|
|
gnutls
|
|
|
|
pcre2
|
2019-09-04 02:02:39 +02:00
|
|
|
zlib
|
2020-02-09 00:08:44 +01:00
|
|
|
icu
|
|
|
|
systemd
|
2018-08-09 04:54:17 +02:00
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2019-09-04 02:02:39 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# Required by vte-2.91.pc.
|
|
|
|
gtk3
|
|
|
|
glib
|
|
|
|
pango
|
|
|
|
];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2019-10-21 21:30:02 +02:00
|
|
|
patches =
|
|
|
|
# VTE needs a small patch to work with musl:
|
|
|
|
# https://gitlab.gnome.org/GNOME/vte/issues/72
|
|
|
|
lib.optional
|
|
|
|
stdenv.hostPlatform.isMusl
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch";
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/vte/uploads/c334f767f5d605e0f30ecaa2a0e4d226/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch";
|
|
|
|
sha256 = "1ii9db9i5l3fy2alxz7bjfsgjs3lappnlx339dvxbi2141zknf5r";
|
|
|
|
});
|
|
|
|
|
2019-09-04 02:02:39 +02:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs perf/*
|
|
|
|
patchShebangs src/box_drawing_generate.sh
|
|
|
|
'';
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.gnome.org/";
|
2019-09-04 00:49:40 +02:00
|
|
|
description = "A library implementing a terminal emulator widget for GTK";
|
2016-09-18 21:35:23 +02:00
|
|
|
longDescription = ''
|
|
|
|
VTE is a library (libvte) implementing a terminal emulator widget for
|
2019-09-04 00:49:40 +02:00
|
|
|
GTK, and a minimal sample application (vte) using that. Vte is
|
2016-09-18 21:35:23 +02:00
|
|
|
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;
|
2020-04-01 14:40:51 +02:00
|
|
|
maintainers = with maintainers; [ astsmtl antono lethalman ] ++ teams.gnome.members;
|
2019-09-04 02:02:39 +02:00
|
|
|
platforms = platforms.unix;
|
2016-09-18 21:35:23 +02:00
|
|
|
};
|
2016-09-29 14:20:14 +02:00
|
|
|
}
|