2013-07-08 20:08:40 +01:00
|
|
|
{ stdenv, fetchurl, e2fsprogs }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2013-07-08 20:08:40 +01:00
|
|
|
version = "0.2.4";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "extundelete";
|
2013-07-08 20:08:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 01:09:34 +01:00
|
|
|
url = "mirror://sourceforge/extundelete/extundelete-0.2.4.tar.bz2";
|
2013-07-08 20:08:40 +01:00
|
|
|
sha256 = "1x0r7ylxlp9lbj3d7sqf6j2a222dwy2nfpff05jd6mkh4ihxvyd1";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ e2fsprogs ];
|
|
|
|
|
2018-04-15 00:23:07 +01:00
|
|
|
# inode field i_dir_acl was repurposed as i_size_high in e2fsprogs 1.44,
|
|
|
|
# breaking the build
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace src/insertionops.cc \
|
|
|
|
--replace "Directory ACL:" "High 32 bits of size:" \
|
|
|
|
--replace "inode.i_dir_acl" "inode.i_size_high"
|
|
|
|
'';
|
|
|
|
|
2013-07-08 20:08:40 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Utility that can recover deleted files from an ext3 or ext4 partition";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://extundelete.sourceforge.net/";
|
2013-07-08 20:08:40 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2013-07-08 20:08:40 +01:00
|
|
|
};
|
|
|
|
}
|