Daniel Lundin
892d1b72f8
Some checks failed
ci/woodpecker/push/ci Pipeline failed
We probably want to revisit this later when minimizing the image, but let's avoid rebuilding most of the world at this point.
21 lines
532 B
Nix
21 lines
532 B
Nix
final: prev: {
|
|
# Build mkfs.erofs with zstd support
|
|
erofs-utils = prev.erofs-utils.overrideAttrs (old: {
|
|
buildInputs = old.buildInputs ++ [ prev.zstd ];
|
|
configureFlags = old.configureFlags ++ [
|
|
"--enable-multithreading"
|
|
"--enable-zstd"
|
|
];
|
|
});
|
|
|
|
## FIXME: Revisit + refine these below in a future image minimization effort
|
|
|
|
# util-linux = prev.util-linux.override {
|
|
# ncursesSupport = false;
|
|
# nlsSupport = false;
|
|
# };
|
|
#
|
|
# dbus = prev.dbus.override {
|
|
# x11Support = false;
|
|
# };
|
|
}
|