core/pkgs/by-name/co/coreutils/packages.nix
2024-05-13 11:34:52 -04:00

14 lines
396 B
Nix

{ ... }:
res: pkgs: super:
with pkgs;
{
coreutils = callPackage ./. { };
# 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; };
coreutils-prefixed = coreutils.override { withPrefix = true; singleBinary = false; };
}