2020-04-24 23:36:52 +00:00
|
|
|
{ config, stdenv, pkgs, lib }:
|
|
|
|
|
|
|
|
lib.makeScope pkgs.newScope (self: with self; {
|
|
|
|
|
|
|
|
#### PLATFORM
|
|
|
|
|
|
|
|
libIDL = callPackage ./platform/libIDL {
|
2024-09-26 11:04:55 +00:00
|
|
|
gettext = if stdenv.hostPlatform.isDarwin then pkgs.gettext else null;
|
2020-04-24 23:36:52 +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
|
|
|
|
gnome-common = callPackage platform/gnome-common { };
|
|
|
|
|
|
|
|
gnome_mime_data = callPackage ./platform/gnome-mime-data { };
|
|
|
|
|
|
|
|
gtkglext = callPackage ./platform/gtkglext { };
|
|
|
|
|
|
|
|
#### DESKTOP
|
|
|
|
|
2021-03-16 09:55:35 +00:00
|
|
|
gtksourceview = callPackage ./desktop/gtksourceview {
|
|
|
|
autoreconfHook = pkgs.autoreconfHook269;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (pkgs)
|
|
|
|
# GTK Libs
|
2023-10-09 19:29:22 +00:00
|
|
|
glib glibmm atk atkmm cairo pango pangomm gtkmm2 libcanberra-gtk2
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Included for backwards compatibility
|
2023-07-15 17:15:38 +00:00
|
|
|
libsoup libwnck2 gtk-doc gnome-doc-utils
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
gvfs # added 2019-09-03
|
|
|
|
;
|
|
|
|
|
|
|
|
gtk = pkgs.gtk2;
|
|
|
|
gtkmm = pkgs.gtkmm2;
|
|
|
|
|
|
|
|
gtkdoc = pkgs.gtk-doc;
|
|
|
|
startup_notification = pkgs.libstartup_notification;
|
|
|
|
startupnotification = pkgs.libstartup_notification;
|
|
|
|
gnomedocutils = pkgs.gnome-doc-utils;
|
|
|
|
gnome-icon-theme = pkgs.gnome-icon-theme;
|
|
|
|
gnome_icon_theme = self.gnome-icon-theme;
|
|
|
|
gnomeicontheme = self.gnome-icon-theme;
|
|
|
|
gnome_common = gnome-common;
|
2023-01-20 10:41:00 +00:00
|
|
|
gnome_python = throw "gnome2.gnome_python has been removed"; # 2023-01-14
|
|
|
|
gnome_python_desktop = throw "gnome2.gnome_python_desktop has been removed"; # 2023-01-14
|
2024-07-31 10:19:44 +00:00
|
|
|
gnome_vfs = throw "gnome2.gnome_vfs has been removed"; # 2024-06-27
|
2023-01-20 10:41:00 +00:00
|
|
|
gtkhtml = throw "gnome2.gtkhtml has been removed"; # 2023-01-15
|
|
|
|
gtkhtml4 = throw "gnome2.gtkhtml4 has been removed"; # 2023-01-15
|
2024-07-31 10:19:44 +00:00
|
|
|
libbonobo = throw "gnome2.libbonobo has been removed"; # 2024-06-27
|
|
|
|
libbonoboui = throw "gnome2.libbonoboui has been removed"; # 2024-06-27
|
2023-01-20 10:41:00 +00:00
|
|
|
libglademm = throw "gnome2.libglademm has been removed"; # 2022-01-15
|
|
|
|
libgnomecanvasmm = "gnome2.libgnomecanvasmm has been removed"; # 2022-01-15
|
|
|
|
libgnomecups = throw "gnome2.libgnomecups has been removed"; # 2023-01-15
|
|
|
|
libgnomeprint = throw "gnome2.libgnomeprint has been removed"; # 2023-01-15
|
|
|
|
libgnomeprintui = throw "gnome2.libgnomeprintui has been removed"; # 2023-01-15
|
2024-07-31 10:19:44 +00:00
|
|
|
libgnome = throw "gnome2.libgnome has been removed"; # 2024-06-27
|
|
|
|
libgnomeui = throw "gnome2.libgnomeui has been removed"; # 2024-06-27
|
2023-01-20 10:41:00 +00:00
|
|
|
libgtkhtml = throw "gnome2.libgtkhtml has been removed"; # 2023-01-15
|
|
|
|
python_rsvg = throw "gnome2.python_rsvg has been removed"; # 2023-01-14
|
2020-04-24 23:36:52 +00:00
|
|
|
})
|