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
|
2021-01-19 07:50:56 +01:00
|
|
|
, pkg-config
|
2019-09-04 02:02:39 +02:00
|
|
|
, meson
|
|
|
|
, ninja
|
2021-05-07 23:18:14 +02:00
|
|
|
, gnome
|
2019-09-04 02:02:39 +02:00
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, gobject-introspection
|
|
|
|
, vala
|
2021-03-21 08:28:32 +01:00
|
|
|
, python3
|
2019-09-04 02:02:39 +02:00
|
|
|
, 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";
|
2021-05-06 19:45:56 +02:00
|
|
|
version = "0.64.1";
|
2019-09-04 02:02:39 +02:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-21 18:00:13 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-05-06 19:45:56 +02:00
|
|
|
sha256 = "sha256-EvtBqf+OA8XxcRtGVgkQpLmzECrsPp52Cc7vTfqYqio=";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2021-03-21 08:28:32 +01:00
|
|
|
patches = [
|
|
|
|
# VTE needs a small patch to work with musl:
|
|
|
|
# https://gitlab.gnome.org/GNOME/vte/issues/72
|
|
|
|
# Taken from https://git.alpinelinux.org/aports/tree/community/vte3
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch";
|
|
|
|
url = "https://git.alpinelinux.org/aports/plain/community/vte3/fix-W_EXITCODE.patch?id=4d35c076ce77bfac7655f60c4c3e4c86933ab7dd";
|
|
|
|
sha256 = "FkVyhsM0mRUzZmS2Gh172oqwcfXv6PyD6IEgjBhy2uU=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-09-04 02:02:39 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
gperf
|
|
|
|
libxml2
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 07:50:56 +01:00
|
|
|
pkg-config
|
2019-09-04 02:02:39 +02:00
|
|
|
vala
|
2021-03-21 08:28:32 +01:00
|
|
|
python3
|
2019-09-04 02:02:39 +02:00
|
|
|
];
|
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-09-04 02:02:39 +02:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs perf/*
|
|
|
|
patchShebangs src/box_drawing_generate.sh
|
2021-03-21 08:28:32 +01:00
|
|
|
patchShebangs src/parser-seq.py
|
|
|
|
patchShebangs src/modes.py
|
2019-09-04 02:02:39 +02:00
|
|
|
'';
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2021-03-21 00:57:24 +01:00
|
|
|
passthru = {
|
2021-05-07 23:18:14 +02:00
|
|
|
updateScript = gnome.updateScript {
|
2021-03-21 00:57:24 +01:00
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "odd-unstable";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
2021-03-21 08:28:32 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
2021-05-07 15:35:21 +02:00
|
|
|
maintainers = with maintainers; [ astsmtl antono ] ++ 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
|
|
|
}
|