extundelete: fix build with e2fsprogs 1.44

xeji 0a74fca5 2c95644e

+8
+8
pkgs/tools/filesystems/extundelete/default.nix
··· 11 11 12 12 buildInputs = [ e2fsprogs ]; 13 13 14 + # 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 + 14 22 meta = with stdenv.lib; { 15 23 description = "Utility that can recover deleted files from an ext3 or ext4 partition"; 16 24 homepage = http://extundelete.sourceforge.net/;