nixpkgs/pkgs/top-level/packages-config.nix
Eelco Dolstra d6ec410a47
Add packages.json to the tarball job
Moved from nixos-homepage.
2020-03-24 16:42:00 +01:00

14 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;
};
}