about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-15 16:49:42 -0400
committerTor Hedin Brønner <torhedinbronner@gmail.com>2019-09-30 19:39:49 +0200
commit90b0e3c19f8c9d7af12de9fae7c7958a177ddbda (patch)
tree93322e6e0672a4262b07786424600380a6d44e03 /pkgs/desktops
parent345ef1cfe0b86b74178b7f666f956fd7de23387c (diff)
downloadnixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.tar
nixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.tar.gz
nixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.tar.bz2
nixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.tar.lz
nixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.tar.xz
nixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.tar.zst
nixlib-90b0e3c19f8c9d7af12de9fae7c7958a177ddbda.zip
gnome3.gnome-shell: enable extensions_tool
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome-3/core/gnome-shell/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/desktops/gnome-3/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/core/gnome-shell/default.nix
index 92578ef2798f..6c26c8c4fa40 100644
--- a/pkgs/desktops/gnome-3/core/gnome-shell/default.nix
+++ b/pkgs/desktops/gnome-3/core/gnome-shell/default.nix
@@ -5,7 +5,8 @@
 , libpulseaudio, libical, gobject-introspection, gstreamer, wrapGAppsHook, libxslt, gcr, caribou
 , accountsservice, gdk-pixbuf, gdm, upower, ibus, networkmanagerapplet, libgnomekbd, gnome-desktop
 , gsettings-desktop-schemas, gnome-keyring, glib, gjs, mutter, evolution-data-server, gtk3
-, sassc, systemd, gst_all_1, adwaita-icon-theme, gnome-bluetooth, gnome-clocks, gnome-settings-daemon }:
+, sassc, systemd, gst_all_1, adwaita-icon-theme, gnome-bluetooth, gnome-clocks, gnome-settings-daemon
+, gnome-autoar, asciidoc-full }:
 
 # http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.10.2.1.ebuild?revision=1.3&view=markup
 
@@ -25,7 +26,7 @@ in stdenv.mkDerivation rec {
 
   nativeBuildInputs = [
     meson ninja pkgconfig gettext docbook_xsl docbook_xsl_ns docbook_xml_dtd_42 perl wrapGAppsHook glibcLocales
-    sassc desktop-file-utils libxslt.bin python3
+    sassc desktop-file-utils libxslt.bin python3 asciidoc-full
   ];
   buildInputs = [
     systemd caribou
@@ -39,6 +40,7 @@ in stdenv.mkDerivation rec {
     at-spi2-core upower ibus gnome-desktop telepathy-logger gnome-settings-daemon
     gst_all_1.gst-plugins-good # recording
     gobject-introspection
+    gnome-autoar
 
     # not declared at build time, but typelib is needed at runtime
     libgweather networkmanagerapplet
@@ -49,8 +51,6 @@ in stdenv.mkDerivation rec {
     caribou
   ];
 
-  mesonFlags = [ "-Dextensions_tool=false" ];
-
   patches = [
     (fetchpatch {
       name = "0001-build-Add-missing-dependency-to-run-js-test.patch";