8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
13 lines
473 B
Nix
13 lines
473 B
Nix
# 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.
|
|
packageOverrides = super: {
|
|
haskellPackages = super.recurseIntoAttrs super.haskellPackages;
|
|
rPackages = super.recurseIntoAttrs super.rPackages;
|
|
};
|
|
}
|