patos/overlays/default.nix
Daniel Lundin ac4309657b
Some checks failed
ci/woodpecker/push/ci Pipeline failed
erofs: use multithreading in mkfs when possible
2024-10-16 20:37:57 +02:00

10 lines
275 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"
];
});
}