mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
905 B
Nix
31 lines
905 B
Nix
{ lib, stdenv, fetchurl, e2fsprogs }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "0.2.4";
|
|
pname = "extundelete";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/extundelete/extundelete-0.2.4.tar.bz2";
|
|
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/";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.domenkozar ];
|
|
mainProgram = "extundelete";
|
|
};
|
|
}
|