FIXME: needs zstd support in the kernel, so probablt not a great idea for now
This commit is contained in:
parent
a4d0e10cc4
commit
936e38be15
3 changed files with 15 additions and 2 deletions
pkgs
10
pkgs/erofs-utils.nix
Normal file
10
pkgs/erofs-utils.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ prev, ... }:
|
||||
|
||||
# Build mkfs.erofs with zstd support
|
||||
prev.erofs-utils.overrideAttrs (final: p: {
|
||||
buildInputs = p.buildInputs ++ [ prev.zstd ];
|
||||
configureFlags = p.configureFlags ++ [
|
||||
"--enable-multithreading"
|
||||
"--enable-zstd"
|
||||
];
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue