2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
with pkgs; {
|
|
|
|
coreutils = callPackage ./. { };
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
# The coreutils above are built with dependencies from
|
|
|
|
# bootstrapping. We cannot override it here, because that pulls in
|
|
|
|
# openssl from the previous stage as well.
|
|
|
|
coreutils-full = callPackage ./. { minimal = false; };
|
2024-06-30 08:16:52 +00:00
|
|
|
coreutils-prefixed = coreutils.override {
|
|
|
|
withPrefix = true;
|
|
|
|
singleBinary = false;
|
|
|
|
};
|
2024-05-02 00:46:19 +00:00
|
|
|
}
|