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