mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
73 lines
2.6 KiB
Nix
73 lines
2.6 KiB
Nix
{ config, stdenv, pkgs, lib }:
|
|
|
|
lib.makeScope pkgs.newScope (self: with self; {
|
|
|
|
#### PLATFORM
|
|
|
|
libIDL = callPackage ./platform/libIDL {
|
|
gettext = if stdenv.hostPlatform.isDarwin then pkgs.gettext else null;
|
|
};
|
|
|
|
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
|
|
|
|
gtksourceview = callPackage ./desktop/gtksourceview {
|
|
autoreconfHook = pkgs.autoreconfHook269;
|
|
};
|
|
|
|
} // lib.optionalAttrs config.allowAliases {
|
|
inherit (pkgs)
|
|
# GTK Libs
|
|
glib glibmm atk atkmm cairo pango pangomm gtkmm2 libcanberra-gtk2
|
|
|
|
# Included for backwards compatibility
|
|
libsoup libwnck2 gtk-doc gnome-doc-utils
|
|
|
|
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;
|
|
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
|
|
gnome_vfs = throw "gnome2.gnome_vfs has been removed"; # 2024-06-27
|
|
gtkhtml = throw "gnome2.gtkhtml has been removed"; # 2023-01-15
|
|
gtkhtml4 = throw "gnome2.gtkhtml4 has been removed"; # 2023-01-15
|
|
libbonobo = throw "gnome2.libbonobo has been removed"; # 2024-06-27
|
|
libbonoboui = throw "gnome2.libbonoboui has been removed"; # 2024-06-27
|
|
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
|
|
libgnome = throw "gnome2.libgnome has been removed"; # 2024-06-27
|
|
libgnomeui = throw "gnome2.libgnomeui has been removed"; # 2024-06-27
|
|
libgtkhtml = throw "gnome2.libgtkhtml has been removed"; # 2023-01-15
|
|
python_rsvg = throw "gnome2.python_rsvg has been removed"; # 2023-01-14
|
|
})
|