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