patos/overlays/default.nix
Daniel Lundin d65e479bef
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Add custom kernel config to shrink the image size
2024-10-13 22:51:23 +02:00

9 lines
243 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-zstd"
];
});
}