vte: 0.80.3 → 0.81.90
https://gitlab.gnome.org/GNOME/vte/-/compare/0.80.3...0.81.90 Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com> Co-authored-by: Bobby Rong <rjl931189261@126.com>
This commit is contained in:
@@ -9,7 +9,7 @@ let
|
|||||||
vteInitSnippet = ''
|
vteInitSnippet = ''
|
||||||
# Show current working directory in VTE terminals window title.
|
# Show current working directory in VTE terminals window title.
|
||||||
# Supports both bash and zsh, requires interactive shell.
|
# Supports both bash and zsh, requires interactive shell.
|
||||||
. ${pkgs.vte.override { gtkVersion = null; }}/etc/profile.d/vte.sh
|
. ${pkgs.vte-gtk4}/etc/profile.d/vte.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|||||||
@@ -23,9 +23,11 @@
|
|||||||
pango,
|
pango,
|
||||||
pcre2,
|
pcre2,
|
||||||
cairo,
|
cairo,
|
||||||
|
fmt_11,
|
||||||
fribidi,
|
fribidi,
|
||||||
lz4,
|
lz4,
|
||||||
icu,
|
icu,
|
||||||
|
simdutf,
|
||||||
systemd,
|
systemd,
|
||||||
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
||||||
fast-float,
|
fast-float,
|
||||||
@@ -36,7 +38,7 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "vte";
|
pname = "vte";
|
||||||
version = "0.80.3";
|
version = "0.81.90";
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
"out"
|
"out"
|
||||||
@@ -46,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/vte/${lib.versions.majorMinor finalAttrs.version}/vte-${finalAttrs.version}.tar.xz";
|
url = "mirror://gnome/sources/vte/${lib.versions.majorMinor finalAttrs.version}/vte-${finalAttrs.version}.tar.xz";
|
||||||
hash = "sha256-Lllv0/vqu3FTFmIiTnH2osN/aEQmE21ihUYnJ2709pk=";
|
hash = "sha256-kLJhqwJZf+6UH3GmV+v50OMDqsN3tIXERNhUQ1oJEyE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@@ -58,6 +60,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
url = "https://git.alpinelinux.org/aports/plain/community/vte3/fix-W_EXITCODE.patch?id=4d35c076ce77bfac7655f60c4c3e4c86933ab7dd";
|
url = "https://git.alpinelinux.org/aports/plain/community/vte3/fix-W_EXITCODE.patch?id=4d35c076ce77bfac7655f60c4c3e4c86933ab7dd";
|
||||||
hash = "sha256-FkVyhsM0mRUzZmS2Gh172oqwcfXv6PyD6IEgjBhy2uU=";
|
hash = "sha256-FkVyhsM0mRUzZmS2Gh172oqwcfXv6PyD6IEgjBhy2uU=";
|
||||||
})
|
})
|
||||||
|
|
||||||
|
# Fix compilation with gcc 14
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://gitlab.gnome.org/GNOME/vte/-/commit/e297ba0507d0e7863edd411dfc5264bbc490e4f6.patch";
|
||||||
|
hash = "sha256-uTaeb7bLUBefgF5Uxl7Qxlcp5Uj7pqW8XiR/5rsjuTI=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@@ -76,6 +84,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cairo
|
cairo
|
||||||
|
fmt_11
|
||||||
fribidi
|
fribidi
|
||||||
gnutls
|
gnutls
|
||||||
pango # duplicated with propagatedBuildInputs to support gtkVersion == null
|
pango # duplicated with propagatedBuildInputs to support gtkVersion == null
|
||||||
@@ -83,6 +92,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
lz4
|
lz4
|
||||||
icu
|
icu
|
||||||
fast-float
|
fast-float
|
||||||
|
simdutf
|
||||||
]
|
]
|
||||||
++ lib.optionals systemdSupport [
|
++ lib.optionals systemdSupport [
|
||||||
systemd
|
systemd
|
||||||
|
|||||||
Reference in New Issue
Block a user