tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
extundelete: fix build with e2fsprogs 1.44
xeji
7 years ago
0a74fca5
2c95644e
+8
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
extundelete
default.nix
+8
pkgs/tools/filesystems/extundelete/default.nix
···
11
11
12
12
buildInputs = [ e2fsprogs ];
13
13
14
14
+
# inode field i_dir_acl was repurposed as i_size_high in e2fsprogs 1.44,
15
15
+
# breaking the build
16
16
+
patchPhase = ''
17
17
+
substituteInPlace src/insertionops.cc \
18
18
+
--replace "Directory ACL:" "High 32 bits of size:" \
19
19
+
--replace "inode.i_dir_acl" "inode.i_size_high"
20
20
+
'';
21
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/;