1 # Used in the generation of package search database.
3 # Ensures no aliases are in the results.
6 # Enable recursion into attribute sets that nix-env normally doesn't look into
7 # so that we can get a more complete picture of the available packages for the
8 # purposes of the index.
9 packageOverrides = super: with super; lib.mapAttrs (_: set: recurseIntoAttrs set) {
31 # Make sure haskell.compiler is included, so alternative GHC versions show up,
32 # but don't add haskell.packages.* since they contain the same packages (at
33 # least by name) as haskellPackages.
34 haskell = super.haskell // {
35 compiler = recurseIntoAttrs super.haskell.compiler;
38 # minimal-bootstrap packages aren't used for anything but bootstrapping our
39 # stdenv. They should not be used for any other purpose and therefore not
40 # show up in search results or repository tracking services that consume our
41 # packages.json https://github.com/NixOS/nixpkgs/issues/244966
42 minimal-bootstrap = { };