2020-03-24 16:31:51 +01:00
|
|
|
# Used in the generation of package search database.
|
|
|
|
{
|
|
|
|
# Ensures no aliases are in the results.
|
|
|
|
allowAliases = false;
|
|
|
|
|
|
|
|
# Enable recursion into attribute sets that nix-env normally doesn't look into
|
|
|
|
# so that we can get a more complete picture of the available packages for the
|
|
|
|
# purposes of the index.
|
2021-02-19 19:21:56 +01:00
|
|
|
packageOverrides = super: with super; lib.mapAttrs (_: set: recurseIntoAttrs set) {
|
|
|
|
inherit (super)
|
|
|
|
apacheHttpdPackages
|
|
|
|
atomPackages
|
|
|
|
fdbPackages
|
|
|
|
fusePackages
|
|
|
|
gns3Packages
|
|
|
|
haskellPackages
|
|
|
|
idrisPackages
|
|
|
|
nodePackages
|
|
|
|
nodePackages_latest
|
|
|
|
platformioPackages
|
|
|
|
quicklispPackagesClisp
|
|
|
|
quicklispPackagesSBCL
|
|
|
|
rPackages
|
|
|
|
roundcubePlugins
|
|
|
|
sconsPackages
|
|
|
|
sourceHanPackages
|
|
|
|
steamPackages
|
|
|
|
ut2004Packages
|
|
|
|
zabbix40
|
|
|
|
zabbix50
|
|
|
|
zeroadPackages
|
|
|
|
;
|
|
|
|
|
|
|
|
# This is an alias which we disallow by default; explicitly allow it
|
|
|
|
emacs27Packages = emacs27.pkgs;
|
|
|
|
};
|
2020-03-24 16:31:51 +01:00
|
|
|
}
|