3
0
Fork 0
forked from mirrors/nixpkgs

packages-config: don't export minimal-bootstrap packages

Fixes https://github.com/NixOS/nixpkgs/issues/244966
This commit is contained in:
Atemu 2023-10-23 11:28:20 +02:00 committed by Adam Joseph
parent 52308bd7b4
commit 6f5d72df0b

View file

@ -45,5 +45,11 @@
haskell = super.haskell // {
compiler = recurseIntoAttrs super.haskell.compiler;
};
# minimal-bootstrap packages aren't used for anything but bootstrapping our
# stdenv. They should not be used for any other purpose and therefore not
# show up in search results or repository tracking services that consume our
# packages.json https://github.com/NixOS/nixpkgs/issues/244966
minimal-bootstrap = { };
};
}