vte: 0.56.3 → 0.58.0

Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
This commit is contained in:
Tor Hedin Brønner 2019-09-04 00:02:39 +00:00
parent 63b9cbdb8e
commit 374ae1b4ec

View file

@ -1,36 +1,67 @@
{ stdenv, fetchurl, intltool, pkgconfig
, gnome3, glib, gtk3, ncurses, gobject-introspection, vala, libxml2, gnutls
, gperf, pcre2
{ stdenv
, fetchurl
, gettext
, pkgconfig
, meson
, ninja
, gnome3
, glib
, gtk3
, gobject-introspection
, vala
, libxml2
, gnutls
, gperf
, pango
, pcre2
, fribidi
, zlib
}:
stdenv.mkDerivation rec {
pname = "vte";
version = "0.56.3";
version = "0.58.0";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0j166gic5znssdb9r45qazq4kb4v9fial82czand5wa8i2yd988p";
sha256 = "0ifvza9sdrkxxqq7m9i7ry23sv7widjz6nzbvgc60kpph4fmf187";
};
passthru = {
updateScript = gnome3.updateScript { packageName = pname; };
};
nativeBuildInputs = [ gobject-introspection intltool pkgconfig vala gperf libxml2 ];
buildInputs = [ glib gtk3 ncurses ];
nativeBuildInputs = [
gettext
gobject-introspection
gperf
libxml2
meson
ninja
pkgconfig
vala
];
buildInputs = [
fribidi
gnutls
pcre2
zlib
];
propagatedBuildInputs = [
# Required by vte-2.91.pc.
gtk3
gnutls
pcre2
glib
pango
];
preConfigure = "patchShebangs .";
configureFlags = [ "--enable-introspection" "--disable-Bsymbolic" ];
enableParallelBuilding = true;
postPatch = ''
patchShebangs perf/*
patchShebangs src/box_drawing_generate.sh
'';
meta = with stdenv.lib; {
homepage = https://www.gnome.org/;
@ -45,7 +76,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.lgpl2;
maintainers = with maintainers; [ astsmtl antono lethalman ];
platforms = platforms.linux ++ platforms.darwin;
platforms = platforms.unix;
};
}