2016-09-18 20:35:23 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, gnome3, intltool, glib, libnotify, lcms2, libXtst
|
|
|
|
, libxkbfile, libpulseaudio, libcanberra_gtk3, upower, colord, libgweather, polkit
|
|
|
|
, geoclue2, librsvg, xf86_input_wacom, udev, libgudev, libwacom, libxslt, libtool, networkmanager
|
2017-04-09 09:00:12 +01:00
|
|
|
, docbook_xsl, docbook_xsl_ns, wrapGAppsHook, ibus, xkeyboard_config }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
|
|
|
# fatal error: gio/gunixfdlist.h: No such file or directory
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
|
|
|
|
buildInputs = with gnome3;
|
|
|
|
[ intltool pkgconfig ibus gtk glib gsettings_desktop_schemas networkmanager
|
|
|
|
libnotify gnome_desktop lcms2 libXtst libxkbfile libpulseaudio
|
|
|
|
libcanberra_gtk3 upower colord libgweather xkeyboard_config
|
|
|
|
polkit geocode_glib geoclue2 librsvg xf86_input_wacom udev libgudev libwacom libxslt
|
2017-04-09 09:00:12 +01:00
|
|
|
libtool docbook_xsl docbook_xsl_ns wrapGAppsHook gnome_themes_standard ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|