nixpkgs/pkgs/tools/filesystems/extundelete/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
905 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, e2fsprogs }:
2013-07-08 19:08:40 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2013-07-08 19:08:40 +00:00
version = "0.2.4";
pname = "extundelete";
2013-07-08 19:08:40 +00:00
src = fetchurl {
url = "mirror://sourceforge/extundelete/extundelete-0.2.4.tar.bz2";
2013-07-08 19:08:40 +00:00
sha256 = "1x0r7ylxlp9lbj3d7sqf6j2a222dwy2nfpff05jd6mkh4ihxvyd1";
};
buildInputs = [ e2fsprogs ];
# 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"
'';
meta = with lib; {
description = "Utility that can recover deleted files from an ext3 or ext4 partition";
homepage = "https://extundelete.sourceforge.net/";
2024-04-26 11:35:31 +00:00
license = licenses.gpl2Only;
2013-07-08 19:08:40 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.domenkozar ];
2023-11-23 21:09:35 +00:00
mainProgram = "extundelete";
2013-07-08 19:08:40 +00:00
};
}