3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #43079 from matthewbauer/rework-extra-pkgs

Rework stage.nix's extraPkgs
This commit is contained in:
Matthew Bauer 2018-07-05 18:05:57 -04:00 committed by GitHub
commit bb0febf575
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 83 additions and 68 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, lib, buildEnv, callPackage_i686, fetchFromGitHub, python27Packages, graphviz { stdenv, lib, buildEnv, pkgsi686Linux, fetchFromGitHub, python27Packages, graphviz
, includeGUI ? true , includeGUI ? true
, includeProtocols ? true , includeProtocols ? true
}: }:
@ -20,7 +20,7 @@ let
platforms = platforms.linux; platforms = platforms.linux;
}; };
cli = callPackage_i686 ./cli.nix { cli = pkgsi686Linux.callPackage ./cli.nix {
inherit version src meta; inherit version src meta;
}; };
@ -47,7 +47,7 @@ let
python27Packages.wxPython python27Packages.wxPython
graphviz graphviz
]; ];
installPhase = '' installPhase = ''
mkdir -p "$out"/gui "$out"/bin mkdir -p "$out"/gui "$out"/bin
cp -r gui/* "$out"/gui cp -r gui/* "$out"/gui

View file

@ -1,7 +1,7 @@
{ stdenv, callPackage, callPackage_i686, makeWrapper, ...} @pkgs: { stdenv, callPackage, pkgsi686Linux, makeWrapper, ...} @pkgs:
let let
i686 = callPackage_i686 ./vms.nix {}; i686 = pkgsi686Linux.callPackage ./vms.nix {};
native = callPackage ./vms.nix {}; native = callPackage ./vms.nix {};
in in
@ -11,5 +11,3 @@ rec {
spur64 = if stdenv.is64bit then native.spur else "none"; spur64 = if stdenv.is64bit then native.spur else "none";
multi-vm-wrapper = callPackage ../wrapper { inherit cog32 spur32 spur64; }; multi-vm-wrapper = callPackage ../wrapper { inherit cog32 spur32 spur64; };
} }

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl, unzip, autoreconfHook, libtool, makeWrapper, cups, ghostscript, callPackage_i686 }: {stdenv, fetchurl, unzip, autoreconfHook, libtool, makeWrapper, cups, ghostscript, pkgsi686Linux }:
let let
i686_NIX_GCC = callPackage_i686 ({gcc}: gcc) {}; i686_NIX_GCC = pkgsi686Linux.callPackage ({gcc}: gcc) {};
i686_libxml2 = callPackage_i686 ({libxml2}: libxml2) {}; i686_libxml2 = pkgsi686Linux.callPackage ({libxml2}: libxml2) {};
i686_glibc = callPackage_i686 ({glibc}: glibc) {}; i686_glibc = pkgsi686Linux.callPackage ({glibc}: glibc) {};
src_canon = fetchurl { src_canon = fetchurl {
url = "https://files.canon-europe.com/files/soft45378/software/o147jen_linuxufrII_0290.zip"; url = "https://files.canon-europe.com/files/soft45378/software/o147jen_linuxufrII_0290.zip";

View file

@ -1,11 +1,11 @@
{ system, stdenv, stdenv_32bit, lib, pkgs, pkgsi686Linux, callPackage, callPackage_i686, { system, stdenv, stdenv_32bit, lib, pkgs, pkgsi686Linux, callPackage,
wineRelease ? "stable", wineRelease ? "stable",
supportFlags supportFlags
}: }:
let src = lib.getAttr wineRelease (callPackage ./sources.nix {}); let src = lib.getAttr wineRelease (callPackage ./sources.nix {});
in with src; { in with src; {
wine32 = callPackage_i686 ./base.nix { wine32 = pkgsi686Linux.callPackage ./base.nix {
name = "wine-${version}"; name = "wine-${version}";
inherit src version supportFlags; inherit src version supportFlags;
pkgArches = [ pkgsi686Linux ]; pkgArches = [ pkgsi686Linux ];
@ -33,4 +33,3 @@ in with src; {
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };
} }

View file

@ -3,7 +3,7 @@
args@{ fetchgit, stdenv, autoconf, automake, automake111x, libtool args@{ fetchgit, stdenv, autoconf, automake, automake111x, libtool
, texinfo, glibcCross, hurdPartedCross, libuuid, samba , texinfo, glibcCross, hurdPartedCross, libuuid, samba
, gccCrossStageStatic, gcc , gccCrossStageStatic, gcc
, forceSystem, newScope, platform, config , pkgsi686Linux, newScope, platform, config
, targetPlatform, buildPlatform , targetPlatform, buildPlatform
, overrides ? {} , overrides ? {}
, buildPackages, pkgs , buildPackages, pkgs
@ -90,7 +90,7 @@ let
mig = callPackage ./mig { mig = callPackage ./mig {
# Build natively, but force use of a 32-bit environment because we're # Build natively, but force use of a 32-bit environment because we're
# targeting `i586-pc-gnu'. # targeting `i586-pc-gnu'.
stdenv = (forceSystem "i686-linux" "i386").stdenv; stdenv = pkgsi686Linux.stdenv;
}; };
# XXX: Use this one for its `.crossDrv'. Using the one above from # XXX: Use this one for its `.crossDrv'. Using the one above from

View file

@ -12,7 +12,7 @@
, patches ? [] , patches ? []
}: }:
{ stdenv, callPackage, callPackage_i686, fetchurl, fetchpatch { stdenv, callPackage, pkgsi686Linux, fetchurl, fetchpatch
, kernel ? null, xorg, zlib, perl, nukeReferences , kernel ? null, xorg, zlib, perl, nukeReferences
, # Whether to build the libraries only (i.e. not the kernel module or , # Whether to build the libraries only (i.e. not the kernel module or
# nvidia-settings). Used to support 32-bit binaries on 64-bit # nvidia-settings). Used to support 32-bit binaries on 64-bit
@ -70,7 +70,7 @@ let
disallowedReferences = optional (!libsOnly) [ kernel.dev ]; disallowedReferences = optional (!libsOnly) [ kernel.dev ];
passthru = { passthru = {
settings = (if settings32Bit then callPackage_i686 else callPackage) (import ./settings.nix self settingsSha256) { settings = (if settings32Bit then pkgsi686Linux.callPackage else callPackage) (import ./settings.nix self settingsSha256) {
withGtk2 = preferGtk2; withGtk2 = preferGtk2;
withGtk3 = !preferGtk2; withGtk3 = !preferGtk2;
}; };

View file

@ -2393,7 +2393,7 @@ with pkgs;
flamerobin = callPackage ../applications/misc/flamerobin { }; flamerobin = callPackage ../applications/misc/flamerobin { };
flashtool = callPackage_i686 ../development/mobile/flashtool { flashtool = pkgsi686Linux.callPackage ../development/mobile/flashtool {
platformTools = androidenv.platformTools; platformTools = androidenv.platformTools;
}; };
@ -2407,7 +2407,7 @@ with pkgs;
flvstreamer = callPackage ../tools/networking/flvstreamer { }; flvstreamer = callPackage ../tools/networking/flvstreamer { };
hmetis = callPackage_i686 ../applications/science/math/hmetis { }; hmetis = pkgsi686Linux.callPackage ../applications/science/math/hmetis { };
libbsd = callPackage ../development/libraries/libbsd { }; libbsd = callPackage ../development/libraries/libbsd { };
@ -2803,13 +2803,13 @@ with pkgs;
groonga = callPackage ../servers/search/groonga { }; groonga = callPackage ../servers/search/groonga { };
grub = callPackage_i686 ../tools/misc/grub { grub = pkgsi686Linux.callPackage ../tools/misc/grub {
buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true; buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true;
}; };
trustedGrub = callPackage_i686 ../tools/misc/grub/trusted.nix { }; trustedGrub = pkgsi686Linux.callPackage ../tools/misc/grub/trusted.nix { };
trustedGrub-for-HP = callPackage_i686 ../tools/misc/grub/trusted.nix { for_HP_laptop = true; }; trustedGrub-for-HP = pkgsi686Linux.callPackage ../tools/misc/grub/trusted.nix { for_HP_laptop = true; };
grub2 = grub2_full; grub2 = grub2_full;
@ -3289,7 +3289,7 @@ with pkgs;
kbdd = callPackage ../applications/window-managers/kbdd { }; kbdd = callPackage ../applications/window-managers/kbdd { };
kdbplus = callPackage_i686 ../applications/misc/kdbplus { }; kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { };
kde2-decoration = libsForQt5.callPackage ../misc/themes/kde2 { }; kde2-decoration = libsForQt5.callPackage ../misc/themes/kde2 { };
@ -3408,7 +3408,7 @@ with pkgs;
kippo = callPackage ../servers/kippo { }; kippo = callPackage ../servers/kippo { };
kzipmix = callPackage_i686 ../tools/compression/kzipmix { }; kzipmix = pkgsi686Linux.callPackage ../tools/compression/kzipmix { };
mailcatcher = callPackage ../development/web/mailcatcher { }; mailcatcher = callPackage ../development/web/mailcatcher { };
@ -6181,7 +6181,7 @@ with pkgs;
cmdstan = callPackage ../development/compilers/cmdstan { }; cmdstan = callPackage ../development/compilers/cmdstan { };
cmucl_binary = callPackage_i686 ../development/compilers/cmucl/binary.nix { }; cmucl_binary = pkgsi686Linux.callPackage ../development/compilers/cmucl/binary.nix { };
compcert = callPackage ../development/compilers/compcert { }; compcert = callPackage ../development/compilers/compcert { };
@ -6488,25 +6488,25 @@ with pkgs;
gcl_2_6_13_pre = callPackage ../development/compilers/gcl/2.6.13-pre.nix { }; gcl_2_6_13_pre = callPackage ../development/compilers/gcl/2.6.13-pre.nix { };
gcc-arm-embedded-4_7 = callPackage_i686 ../development/compilers/gcc-arm-embedded { gcc-arm-embedded-4_7 = pkgsi686Linux.callPackage ../development/compilers/gcc-arm-embedded {
version = "4.7-2013q3-20130916"; version = "4.7-2013q3-20130916";
releaseType = "update"; releaseType = "update";
sha256 = "1bd9bi9q80xn2rpy0rn1vvj70rh15kb7dmah0qs4q2rv78fqj40d"; sha256 = "1bd9bi9q80xn2rpy0rn1vvj70rh15kb7dmah0qs4q2rv78fqj40d";
ncurses = pkgsi686Linux.ncurses5; ncurses = pkgsi686Linux.ncurses5;
}; };
gcc-arm-embedded-4_8 = callPackage_i686 ../development/compilers/gcc-arm-embedded { gcc-arm-embedded-4_8 = pkgsi686Linux.callPackage ../development/compilers/gcc-arm-embedded {
version = "4.8-2014q1-20140314"; version = "4.8-2014q1-20140314";
releaseType = "update"; releaseType = "update";
sha256 = "ce92859550819d4a3d1a6e2672ea64882b30afa2c08cf67fa8e1d93788c2c577"; sha256 = "ce92859550819d4a3d1a6e2672ea64882b30afa2c08cf67fa8e1d93788c2c577";
ncurses = pkgsi686Linux.ncurses5; ncurses = pkgsi686Linux.ncurses5;
}; };
gcc-arm-embedded-4_9 = callPackage_i686 ../development/compilers/gcc-arm-embedded { gcc-arm-embedded-4_9 = pkgsi686Linux.callPackage ../development/compilers/gcc-arm-embedded {
version = "4.9-2015q1-20150306"; version = "4.9-2015q1-20150306";
releaseType = "update"; releaseType = "update";
sha256 = "c5e0025b065750bbd76b5357b4fc8606d88afbac9ff55b8a82927b4b96178154"; sha256 = "c5e0025b065750bbd76b5357b4fc8606d88afbac9ff55b8a82927b4b96178154";
ncurses = pkgsi686Linux.ncurses5; ncurses = pkgsi686Linux.ncurses5;
}; };
gcc-arm-embedded-5 = pkgs.callPackage_i686 ../development/compilers/gcc-arm-embedded { gcc-arm-embedded-5 = pkgs.pkgsi686Linux.callPackage ../development/compilers/gcc-arm-embedded {
dirName = "5.0"; dirName = "5.0";
subdirName = "5-2016-q2-update"; subdirName = "5-2016-q2-update";
version = "5.4-2016q2-20160622"; version = "5.4-2016q2-20160622";
@ -6872,7 +6872,7 @@ with pkgs;
manticore = callPackage ../development/compilers/manticore { }; manticore = callPackage ../development/compilers/manticore { };
mentorToolchains = recurseIntoAttrs ( mentorToolchains = recurseIntoAttrs (
callPackage_i686 ../development/compilers/mentor {} pkgsi686Linux.callPackage ../development/compilers/mentor {}
); );
mercury = callPackage ../development/compilers/mercury { }; mercury = callPackage ../development/compilers/mercury { };
@ -7059,7 +7059,7 @@ with pkgs;
smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { }; smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { };
smlnj = if stdenv.isDarwin smlnj = if stdenv.isDarwin
then callPackage ../development/compilers/smlnj { } then callPackage ../development/compilers/smlnj { }
else callPackage_i686 ../development/compilers/smlnj { }; else pkgsi686Linux.callPackage ../development/compilers/smlnj { };
solc = callPackage ../development/compilers/solc { }; solc = callPackage ../development/compilers/solc { };
@ -7570,7 +7570,7 @@ with pkgs;
scheme48 = callPackage ../development/interpreters/scheme48 { }; scheme48 = callPackage ../development/interpreters/scheme48 { };
self = callPackage_i686 ../development/interpreters/self { }; self = pkgsi686Linux.callPackage ../development/interpreters/self { };
spark = spark_22; spark = spark_22;
spark_22 = callPackage ../applications/networking/cluster/spark { version = "2.2.1"; }; spark_22 = callPackage ../applications/networking/cluster/spark { version = "2.2.1"; };
@ -15014,7 +15014,7 @@ with pkgs;
requests requests_toolbelt sqlalchemy fusepy; requests requests_toolbelt sqlalchemy fusepy;
}; };
adobe-reader = callPackage_i686 ../applications/misc/adobe-reader { }; adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { };
masterpdfeditor = libsForQt5.callPackage ../applications/misc/masterpdfeditor { }; masterpdfeditor = libsForQt5.callPackage ../applications/misc/masterpdfeditor { };
@ -16685,7 +16685,7 @@ with pkgs;
# Impressive, formerly known as "KeyJNote". # Impressive, formerly known as "KeyJNote".
impressive = callPackage ../applications/office/impressive { }; impressive = callPackage ../applications/office/impressive { };
inferno = callPackage_i686 ../applications/inferno { }; inferno = pkgsi686Linux.callPackage ../applications/inferno { };
inginious = callPackage ../servers/inginious {}; inginious = callPackage ../servers/inginious {};
@ -16808,7 +16808,7 @@ with pkgs;
keepnote = callPackage ../applications/office/keepnote { }; keepnote = callPackage ../applications/office/keepnote { };
kega-fusion = callPackage_i686 ../misc/emulators/kega-fusion { }; kega-fusion = pkgsi686Linux.callPackage ../misc/emulators/kega-fusion { };
kermit = callPackage ../tools/misc/kermit { }; kermit = callPackage ../tools/misc/kermit { };
@ -17609,7 +17609,7 @@ with pkgs;
ffmpeg = ffmpeg_2; ffmpeg = ffmpeg_2;
}; };
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { }; pcsx2 = pkgsi686Linux.callPackage ../misc/emulators/pcsx2 { };
pekwm = callPackage ../applications/window-managers/pekwm { }; pekwm = callPackage ../applications/window-managers/pekwm { };
@ -19846,7 +19846,7 @@ with pkgs;
terraria-server = callPackage ../games/terraria-server { }; terraria-server = callPackage ../games/terraria-server { };
tibia = callPackage_i686 ../games/tibia { }; tibia = pkgsi686Linux.callPackage ../games/tibia { };
tintin = callPackage ../games/tintin { }; tintin = callPackage ../games/tintin { };
@ -19915,7 +19915,7 @@ with pkgs;
vectoroids = callPackage ../games/vectoroids { }; vectoroids = callPackage ../games/vectoroids { };
vessel = callPackage_i686 ../games/vessel { }; vessel = pkgsi686Linux.callPackage ../games/vessel { };
vms-empire = callPackage ../games/vms-empire { }; vms-empire = callPackage ../games/vms-empire { };
@ -20905,7 +20905,7 @@ with pkgs;
bootil = callPackage ../development/libraries/bootil { }; bootil = callPackage ../development/libraries/bootil { };
brgenml1lpr = callPackage_i686 ../misc/cups/drivers/brgenml1lpr {}; brgenml1lpr = pkgsi686Linux.callPackage ../misc/cups/drivers/brgenml1lpr {};
brgenml1cupswrapper = callPackage ../misc/cups/drivers/brgenml1cupswrapper {}; brgenml1cupswrapper = callPackage ../misc/cups/drivers/brgenml1cupswrapper {};
@ -20954,10 +20954,10 @@ with pkgs;
cups-bjnp = callPackage ../misc/cups/drivers/cups-bjnp { }; cups-bjnp = callPackage ../misc/cups/drivers/cups-bjnp { };
cups-brother-hl1110 = callPackage_i686 ../misc/cups/drivers/hl1110 { }; cups-brother-hl1110 = pkgsi686Linux.callPackage ../misc/cups/drivers/hl1110 { };
# this driver ships with pre-compiled 32-bit binary libraries # this driver ships with pre-compiled 32-bit binary libraries
cnijfilter_2_80 = callPackage_i686 ../misc/cups/drivers/cnijfilter_2_80 { }; cnijfilter_2_80 = pkgsi686Linux.callPackage ../misc/cups/drivers/cnijfilter_2_80 { };
cnijfilter_4_00 = callPackage ../misc/cups/drivers/cnijfilter_4_00 { cnijfilter_4_00 = callPackage ../misc/cups/drivers/cnijfilter_4_00 {
libusb = libusb1; libusb = libusb1;
@ -21047,7 +21047,7 @@ with pkgs;
gammu = callPackage ../applications/misc/gammu { }; gammu = callPackage ../applications/misc/gammu { };
gensgs = callPackage_i686 ../misc/emulators/gens-gs { }; gensgs = pkgsi686Linux.callPackage ../misc/emulators/gens-gs { };
ghostscript = callPackage ../misc/ghostscript rec { ghostscript = callPackage ../misc/ghostscript rec {
cupsSupport = config.ghostscript.cups or (!stdenv.isDarwin); cupsSupport = config.ghostscript.cups or (!stdenv.isDarwin);
@ -21386,13 +21386,13 @@ with pkgs;
hll2390dw-cups = callPackage ../misc/cups/drivers/hll2390dw-cups { }; hll2390dw-cups = callPackage ../misc/cups/drivers/hll2390dw-cups { };
mfcj470dw-cupswrapper = callPackage ../misc/cups/drivers/mfcj470dwcupswrapper { }; mfcj470dw-cupswrapper = callPackage ../misc/cups/drivers/mfcj470dwcupswrapper { };
mfcj470dwlpr = callPackage_i686 ../misc/cups/drivers/mfcj470dwlpr { }; mfcj470dwlpr = pkgsi686Linux.callPackage ../misc/cups/drivers/mfcj470dwlpr { };
mfcj6510dw-cupswrapper = callPackage ../misc/cups/drivers/mfcj6510dwcupswrapper { }; mfcj6510dw-cupswrapper = callPackage ../misc/cups/drivers/mfcj6510dwcupswrapper { };
mfcj6510dwlpr = callPackage_i686 ../misc/cups/drivers/mfcj6510dwlpr { }; mfcj6510dwlpr = pkgsi686Linux.callPackage ../misc/cups/drivers/mfcj6510dwlpr { };
mfcl2700dncupswrapper = callPackage ../misc/cups/drivers/mfcl2700dncupswrapper { }; mfcl2700dncupswrapper = callPackage ../misc/cups/drivers/mfcl2700dncupswrapper { };
mfcl2700dnlpr = callPackage_i686 ../misc/cups/drivers/mfcl2700dnlpr { }; mfcl2700dnlpr = pkgsi686Linux.callPackage ../misc/cups/drivers/mfcl2700dnlpr { };
mfcl2720dwcupswrapper = callPackage ../misc/cups/drivers/mfcl2720dwcupswrapper { }; mfcl2720dwcupswrapper = callPackage ../misc/cups/drivers/mfcl2720dwcupswrapper { };
mfcl2720dwlpr = callPackage ../misc/cups/drivers/mfcl2720dwlpr { }; mfcl2720dwlpr = callPackage ../misc/cups/drivers/mfcl2720dwlpr { };
@ -21711,7 +21711,7 @@ with pkgs;
callPackage ../applications/networking/znc/modules.nix { } callPackage ../applications/networking/znc/modules.nix { }
); );
zsnes = callPackage_i686 ../misc/emulators/zsnes { }; zsnes = pkgsi686Linux.callPackage ../misc/emulators/zsnes { };
xcpc = callPackage ../misc/emulators/xcpc { }; xcpc = callPackage ../misc/emulators/xcpc { };

View file

@ -117,29 +117,47 @@ let
lib.optionalAttrs allowCustomOverrides lib.optionalAttrs allowCustomOverrides
((config.packageOverrides or (super: {})) super); ((config.packageOverrides or (super: {})) super);
# Override system. This is useful to build i686 packages on x86_64-linux. # Convenience attributes for instantitating package sets. Each of
forceSystem = system: kernel: nixpkgsFun { # these will instantiate a new version of allPackages. Currently the
localSystem = { # following package sets are provided:
inherit system; #
platform = stdenv.hostPlatform.platform // { kernelArch = kernel; }; # - pkgsCross.<system> where system is a member of lib.systems.examples
}; # - pkgsMusl
}; # - pkgsi686Linux
otherPackageSets = self: super: {
# Convenience attributes for instantitating nixpkgs. Each of these # This maps each entry in lib.systems.examples to its own package
# will instantiate a new version of allPackages. They map example # set. Each of these will contain all packages cross compiled for
# attributes to their own thing. # that target system. For instance, pkgsCross.rasberryPi.hello,
extraPkgs = self: super: { # will refer to the "hello" package built for the ARM6-based
pkgsCross = lib.mapAttrs (n: crossSystem: # Raspberry Pi.
pkgsCross = lib.mapAttrs (n: crossSystem:
nixpkgsFun { inherit crossSystem; }) nixpkgsFun { inherit crossSystem; })
lib.systems.examples; lib.systems.examples;
pkgsLocal = lib.mapAttrs (n: localSystem:
nixpkgsFun { inherit localSystem; })
lib.systems.examples;
# Used by wine, firefox with debugging version of Flash, ... # All packages built with the Musl libc. This will override the
pkgsi686Linux = forceSystem "i686-linux" "i386"; # default GNU libc on Linux systems. Non-Linux systems are not
callPackage_i686 = self.pkgsi686Linux.callPackage; # supported.
inherit forceSystem; pkgsMusl = if stdenv.hostPlatform.isLinux then nixpkgsFun {
localSystem = {
parsed = stdenv.hostPlatform.parsed // {
abi = {
"gnu" = lib.systems.parse.abis.musl;
"gnueabi" = lib.systems.parse.abis.musleabi;
"gnueabihf" = lib.systems.parse.abis.musleabihf;
}.${stdenv.hostPlatform.parsed.abi.name} or lib.systems.parse.abis.musl;
};
};
} else throw "Musl libc only supports Linux systems.";
# All packages built for i686 Linux.
# Used by wine, firefox with debugging version of Flash, ...
pkgsi686Linux = assert stdenv.hostPlatform.isLinux; nixpkgsFun {
localSystem = {
parsed = stdenv.hostPlatform.parsed // {
cpu = lib.systems.parse.cpuTypes.i686;
};
};
};
}; };
# The complete chain of package set builders, applied from top to bottom. # The complete chain of package set builders, applied from top to bottom.
@ -152,7 +170,7 @@ let
trivialBuilders trivialBuilders
splice splice
allPackages allPackages
extraPkgs otherPackageSets
aliases aliases
configOverrides configOverrides
] ++ overlays ++ [ ] ++ overlays ++ [