about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gnome-terminal
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2019-09-02 16:45:21 +0000
committerTor Hedin Brønner <torhedinbronner@gmail.com>2019-09-30 19:39:44 +0200
commit7b50a0e9d0bf50d364b813f37d439534a5bf503d (patch)
treed67a8e0b66038549e7cf3b7a1df9d9b5a3018b4f /pkgs/desktops/gnome-3/core/gnome-terminal
parent97aa29806d2275b298e191d8986b485067a82bf2 (diff)
downloadnixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.tar
nixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.tar.gz
nixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.tar.bz2
nixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.tar.lz
nixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.tar.xz
nixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.tar.zst
nixlib-7b50a0e9d0bf50d364b813f37d439534a5bf503d.zip
gnome3.gnome-terminal: 3.32.2 → 3.34.0
* add pcre2

Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
Diffstat (limited to 'pkgs/desktops/gnome-3/core/gnome-terminal')
-rw-r--r--pkgs/desktops/gnome-3/core/gnome-terminal/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix
index 75d4b117e778..1ca58c8f7773 100644
--- a/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, pkgconfig, libxml2, gnome3, dconf, nautilus
 , gtk3, gsettings-desktop-schemas, vte, intltool, which, libuuid, vala
-, desktop-file-utils, itstool, wrapGAppsHook, hicolor-icon-theme }:
+, desktop-file-utils, itstool, wrapGAppsHook, hicolor-icon-theme, glib, pcre2 }:
 
 stdenv.mkDerivation rec {
   pname = "gnome-terminal";
-  version = "3.32.2";
+  version = "3.34.0";
 
   src = fetchurl {
     url = "mirror://gnome/sources/gnome-terminal/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
-    sha256 = "0shhpnagasyp1kxgjczfrivcxbgrrl3y8lzvp1z101m67h4jp6km";
+    sha256 = "0wcavripfsr691qkcjb71vccffz0wx2q5qh4clwnk1hi8j1hz9l5";
   };
 
   buildInputs = [
@@ -19,10 +19,12 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [
     pkgconfig intltool itstool which libxml2
-    vala desktop-file-utils wrapGAppsHook
+    vala desktop-file-utils wrapGAppsHook pcre2
     hicolor-icon-theme # for setup-hook
   ];
 
+  NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
+
   # Silly ./configure, it looks for dbus file from gnome-shell in the
   # installation tree of the package it is configuring.
   postPatch = ''