···1112 buildInputs = [ e2fsprogs ];
130000000014 meta = with stdenv.lib; {
15 description = "Utility that can recover deleted files from an ext3 or ext4 partition";
16 homepage = http://extundelete.sourceforge.net/;
···1112 buildInputs = [ e2fsprogs ];
1314+ # inode field i_dir_acl was repurposed as i_size_high in e2fsprogs 1.44,
15+ # breaking the build
16+ patchPhase = ''
17+ substituteInPlace src/insertionops.cc \
18+ --replace "Directory ACL:" "High 32 bits of size:" \
19+ --replace "inode.i_dir_acl" "inode.i_size_high"
20+ '';
21+22 meta = with stdenv.lib; {
23 description = "Utility that can recover deleted files from an ext3 or ext4 partition";
24 homepage = http://extundelete.sourceforge.net/;