{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / top-level / packages-config.nix
blob51c2b44fc584cd4e1a2a4f4a900e141b065dd7b2
1 # Used in the generation of package search database.
3   # Ensures no aliases are in the results.
4   allowAliases = false;
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) {
10     inherit (super)
11       agdaPackages
12       apacheHttpdPackages
13       fdbPackages
14       fusePackages
15       gns3Packages
16       haskellPackages
17       idrisPackages
18       nodePackages
19       nodePackages_latest
20       platformioPackages
21       rPackages
22       roundcubePlugins
23       sourceHanPackages
24       ut2004Packages
25       zabbix50
26       zabbix60
27       zeroadPackages
28     ;
30     # Make sure haskell.compiler is included, so alternative GHC versions show up,
31     # but don't add haskell.packages.* since they contain the same packages (at
32     # least by name) as haskellPackages.
33     haskell = super.haskell // {
34       compiler = recurseIntoAttrs super.haskell.compiler;
35     };
37     # minimal-bootstrap packages aren't used for anything but bootstrapping our
38     # stdenv. They should not be used for any other purpose and therefore not
39     # show up in search results or repository tracking services that consume our
40     # packages.json https://github.com/NixOS/nixpkgs/issues/244966
41     minimal-bootstrap = { };
42   };