2019-03-03 21:30:31 +00:00
|
|
|
{ config, stdenv, pkgs, lib }:
|
2014-04-19 11:58:37 +00:00
|
|
|
|
2019-03-03 21:25:43 +00:00
|
|
|
lib.makeScope pkgs.newScope (self: with self; {
|
2011-10-08 16:58:32 +00:00
|
|
|
|
|
|
|
#### PLATFORM
|
|
|
|
|
|
|
|
libIDL = callPackage ./platform/libIDL {
|
2019-03-03 21:25:43 +00:00
|
|
|
gettext = if stdenv.hostPlatform.isDarwin then pkgs.gettext else null;
|
2011-10-08 16:58:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ORBit2 = callPackage ./platform/ORBit2 { };
|
|
|
|
|
|
|
|
libart_lgpl = callPackage ./platform/libart_lgpl { };
|
|
|
|
|
|
|
|
libglade = callPackage ./platform/libglade { };
|
|
|
|
|
|
|
|
GConf = callPackage ./platform/GConf { };
|
|
|
|
|
|
|
|
libgnomecanvas = callPackage ./platform/libgnomecanvas { };
|
|
|
|
|
|
|
|
# for git-head builds
|
2018-02-25 02:23:58 +00:00
|
|
|
gnome-common = callPackage platform/gnome-common { };
|
2011-10-08 16:58:32 +00:00
|
|
|
|
|
|
|
gnome_mime_data = callPackage ./platform/gnome-mime-data { };
|
|
|
|
|
|
|
|
gtkglext = callPackage ./platform/gtkglext { };
|
|
|
|
|
|
|
|
#### DESKTOP
|
|
|
|
|
2021-03-14 18:24:12 +00:00
|
|
|
gtksourceview = callPackage ./desktop/gtksourceview {
|
|
|
|
autoreconfHook = pkgs.autoreconfHook269;
|
|
|
|
};
|
2011-10-08 16:58:32 +00:00
|
|
|
|
2022-04-01 09:33:10 +00:00
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
2019-03-03 21:25:43 +00:00
|
|
|
inherit (pkgs)
|
|
|
|
# GTK Libs
|
2023-10-01 18:54:02 +00:00
|
|
|
glib glibmm atk atkmm cairo pango pangomm gtkmm2 libcanberra-gtk2
|
2019-03-03 21:25:43 +00:00
|
|
|
|
|
|
|
# Included for backwards compatibility
|
2023-07-05 00:10:46 +00:00
|
|
|
libsoup libwnck2 gtk-doc gnome-doc-utils
|
2019-09-02 10:57:33 +00:00
|
|
|
|
|
|
|
gvfs # added 2019-09-03
|
|
|
|
;
|
2019-03-03 21:25:43 +00:00
|
|
|
|
|
|
|
gtk = pkgs.gtk2;
|
|
|
|
gtkmm = pkgs.gtkmm2;
|
2019-03-03 21:30:31 +00:00
|
|
|
|
|
|
|
gtkdoc = pkgs.gtk-doc;
|
|
|
|
startup_notification = pkgs.libstartup_notification;
|
|
|
|
startupnotification = pkgs.libstartup_notification;
|
|
|
|
gnomedocutils = pkgs.gnome-doc-utils;
|
2020-04-06 01:01:34 +00:00
|
|
|
gnome-icon-theme = pkgs.gnome-icon-theme;
|
2020-04-04 02:15:14 +00:00
|
|
|
gnome_icon_theme = self.gnome-icon-theme;
|
2020-04-06 01:01:34 +00:00
|
|
|
gnomeicontheme = self.gnome-icon-theme;
|
2019-03-03 21:30:31 +00:00
|
|
|
gnome_common = gnome-common;
|
2023-01-14 15:51:14 +00:00
|
|
|
gnome_python = throw "gnome2.gnome_python has been removed"; # 2023-01-14
|
2023-01-14 15:47:48 +00:00
|
|
|
gnome_python_desktop = throw "gnome2.gnome_python_desktop has been removed"; # 2023-01-14
|
2024-06-27 09:24:36 +00:00
|
|
|
gnome_vfs = throw "gnome2.gnome_vfs has been removed"; # 2024-06-27
|
2023-01-15 03:19:06 +00:00
|
|
|
gtkhtml = throw "gnome2.gtkhtml has been removed"; # 2023-01-15
|
2023-01-15 03:56:53 +00:00
|
|
|
gtkhtml4 = throw "gnome2.gtkhtml4 has been removed"; # 2023-01-15
|
2024-07-02 22:45:52 +00:00
|
|
|
libbonobo = throw "gnome2.libbonobo has been removed"; # 2024-06-27
|
2024-07-02 22:44:06 +00:00
|
|
|
libbonoboui = throw "gnome2.libbonoboui has been removed"; # 2024-06-27
|
2023-01-14 15:47:48 +00:00
|
|
|
libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15
|
2023-01-15 04:04:18 +00:00
|
|
|
libgnomecanvasmm = "gnome2.libgnomecanvasmm has been removed"; # 2022-01-15
|
2023-01-15 03:04:21 +00:00
|
|
|
libgnomecups = throw "gnome2.libgnomecups has been removed"; # 2023-01-15
|
2023-01-15 03:01:45 +00:00
|
|
|
libgnomeprint = throw "gnome2.libgnomeprint has been removed"; # 2023-01-15
|
2023-01-15 03:00:08 +00:00
|
|
|
libgnomeprintui = throw "gnome2.libgnomeprintui has been removed"; # 2023-01-15
|
2024-06-27 09:23:13 +00:00
|
|
|
libgnome = throw "gnome2.libgnome has been removed"; # 2024-06-27
|
2024-06-27 09:22:11 +00:00
|
|
|
libgnomeui = throw "gnome2.libgnomeui has been removed"; # 2024-06-27
|
2023-01-15 03:07:40 +00:00
|
|
|
libgtkhtml = throw "gnome2.libgtkhtml has been removed"; # 2023-01-15
|
2023-01-14 15:47:48 +00:00
|
|
|
python_rsvg = throw "gnome2.python_rsvg has been removed"; # 2023-01-14
|
2019-03-03 21:25:43 +00:00
|
|
|
})
|