core/pkgs/by-name/co/coreutils/packages.nix

14 lines
396 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
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; };
}