{ stdenv, fetchurl, pkgconfig, cairo, libxml2, gnome3, pango , gnome_doc_utils, intltool, libX11, which, libuuid, vala , desktop_file_utils, itstool, wrapGAppsHook, appdata-tools }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; buildInputs = [ gnome3.gtk gnome3.gsettings_desktop_schemas gnome3.vte appdata-tools gnome3.dconf itstool gnome3.nautilus vala ]; nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 desktop_file_utils wrapGAppsHook ]; # FIXME: enable for gnome3 configureFlags = [ "--disable-search-provider" "--disable-migration" ]; meta = with stdenv.lib; { description = "The GNOME Terminal Emulator"; homepage = https://wiki.gnome.org/Apps/Terminal/; platforms = platforms.linux; maintainers = gnome3.maintainers; }; }