-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
packages-config.nix: don't index stuff thats not getting evaled #434501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
fbe17ff
1079516
1cdfcf6
1f4ee10
288d13a
04948a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2330,7 +2330,7 @@ with pkgs; | |
|
|
||
| roundcube = callPackage ../servers/roundcube { }; | ||
|
|
||
| roundcubePlugins = dontRecurseIntoAttrs (callPackage ../servers/roundcube/plugins { }); | ||
| roundcubePlugins = recurseIntoAttrs (callPackage ../servers/roundcube/plugins { }); | ||
|
|
||
| rsyslog = callPackage ../tools/system/rsyslog { | ||
| withHadoop = false; # Currently Broken | ||
|
|
@@ -3461,9 +3461,9 @@ with pkgs; | |
|
|
||
| importNpmLock = callPackages ../build-support/node/import-npm-lock { }; | ||
|
|
||
| nodePackages_latest = dontRecurseIntoAttrs nodejs_latest.pkgs; | ||
| nodePackages_latest = recurseIntoAttrs nodejs_latest.pkgs; | ||
|
|
||
| nodePackages = dontRecurseIntoAttrs nodejs.pkgs; | ||
|
||
| nodePackages = recurseIntoAttrs nodejs.pkgs; | ||
|
|
||
| node2nix = nodePackages.node2nix; | ||
|
|
||
|
|
@@ -3970,7 +3970,7 @@ with pkgs; | |
| inherit (darwin) DarwinTools; | ||
| }; | ||
|
|
||
| platformioPackages = dontRecurseIntoAttrs (callPackage ../development/embedded/platformio { }); | ||
| platformioPackages = recurseIntoAttrs (callPackage ../development/embedded/platformio { }); | ||
| platformio = | ||
| if stdenv.hostPlatform.isLinux then | ||
| platformioPackages.platformio-chrootenv | ||
|
|
@@ -5164,10 +5164,10 @@ with pkgs; | |
|
|
||
| # Haskell and GHC | ||
|
|
||
| haskell = callPackage ./haskell-packages.nix { }; | ||
| haskell = recurseIntoAttrs (callPackage ./haskell-packages.nix { }); | ||
|
|
||
| haskellPackages = | ||
| dontRecurseIntoAttrs | ||
| recurseIntoAttrs | ||
| # Prefer native-bignum to avoid linking issues with gmp | ||
| # GHC 9.6 rts can't be built statically with hadrian, so we need to use 9.4 | ||
| # until 9.8 is ready | ||
|
|
@@ -7857,7 +7857,7 @@ with pkgs; | |
|
|
||
| #GMP ex-satellite, so better keep it near gmp | ||
| # A GMP fork | ||
| gns3Packages = dontRecurseIntoAttrs (callPackage ../applications/networking/gns3 { }); | ||
| gns3Packages = recurseIntoAttrs (callPackage ../applications/networking/gns3 { }); | ||
| gns3-gui = gns3Packages.guiStable; | ||
| gns3-server = gns3Packages.serverStable; | ||
|
|
||
|
|
@@ -9654,7 +9654,7 @@ with pkgs; | |
|
|
||
| rstudioServerWrapper = rstudioWrapper.override { rstudio = rstudio-server; }; | ||
|
|
||
| rPackages = dontRecurseIntoAttrs ( | ||
| rPackages = recurseIntoAttrs ( | ||
| callPackage ../development/r-modules { | ||
| overrides = (config.rPackageOverrides or (_: { })) pkgs; | ||
| } | ||
|
|
@@ -10502,7 +10502,7 @@ with pkgs; | |
| inherit (linuxPackages) kernel; | ||
| }; | ||
|
|
||
| fusePackages = dontRecurseIntoAttrs ( | ||
| fusePackages = recurseIntoAttrs ( | ||
| callPackage ../os-specific/linux/fuse { | ||
| util-linux = util-linuxMinimal; | ||
| } | ||
|
|
@@ -10938,7 +10938,7 @@ with pkgs; | |
|
|
||
| v4l-utils = callPackage ../os-specific/linux/v4l-utils { }; | ||
|
|
||
| windows = callPackages ../os-specific/windows { }; | ||
| windows = recurseIntoAttrs (callPackages ../os-specific/windows { }); | ||
|
|
||
| wpa_supplicant = callPackage ../os-specific/linux/wpa_supplicant { }; | ||
|
|
||
|
|
@@ -11184,7 +11184,7 @@ with pkgs; | |
| pretendard-std | ||
| ; | ||
|
|
||
| sourceHanPackages = dontRecurseIntoAttrs (callPackage ../data/fonts/source-han { }); | ||
| sourceHanPackages = recurseIntoAttrs (callPackage ../data/fonts/source-han { }); | ||
| source-han-sans = sourceHanPackages.sans; | ||
| source-han-serif = sourceHanPackages.serif; | ||
| source-han-mono = sourceHanPackages.mono; | ||
|
|
@@ -11539,6 +11539,8 @@ with pkgs; | |
| emacs-nox = emacs30-nox; | ||
| emacs-pgtk = emacs30-pgtk; | ||
|
|
||
| emacsPackages = recurseIntoAttrs emacs.pkgs; | ||
|
|
||
| emacsPackagesFor = | ||
| emacs: | ||
| import ./emacs-packages.nix { | ||
|
|
||

Uh oh!
There was an error while loading. Please reload this page.