1 { lib, stdenv, buildPackages, fetchurl, fetchpatch, pkg-config, libuuid, gettext, texinfo
2 , withFuse ? stdenv.hostPlatform.isLinux, fuse3
3 , shared ? !stdenv.hostPlatform.isStatic
4 , e2fsprogs, runCommand
7 stdenv.mkDerivation rec {
12 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
13 hash = "sha256-mvzSAfOUKdLbJJKusT26XnXWzFBoK3MtyjVkO9XwkuM=";
16 # fuse2fs adds 14mb of dependencies
17 outputs = [ "bin" "dev" "out" "man" "info" ]
18 ++ lib.optionals withFuse [ "fuse2fs" ];
20 depsBuildBuild = [ buildPackages.stdenv.cc ];
21 nativeBuildInputs = [ pkg-config texinfo ];
22 buildInputs = [ libuuid gettext ]
23 ++ lib.optionals withFuse [ fuse3 ];
26 # Avoid trouble with older systems like NixOS 23.05.
27 # TODO: most likely drop this at some point, e.g. when 23.05 loses support.
29 name = "mke2fs-avoid-incompatible-features.patch";
30 url = "https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/plain/debian/patches/disable-metadata_csum_seed-and-orphan_file-by-default?h=debian/master&id=3fb3d18baba90e5d48d94f4c0b79b2d271b0c913";
31 hash = "sha256-YD11K4s2bqv0rvzrxtaiodzLp3ztULlOlPUf1XcpxRY=";
34 name = "SIZEOF_SIZE_T.patch";
35 url = "https://lore.kernel.org/linux-ext4/20240527074121.2767083-1-hi@alyssa.is/raw";
36 hash = "sha256-QdsvcvBi0mC/4YErqG0UKl94MH0OZpFVTGszNqBe/qw=";
39 name = "unused-parameters.patch";
40 url = "https://lore.kernel.org/linux-ext4/20240527091542.4121237-2-hi@alyssa.is/raw";
41 hash = "sha256-pMoqm2eo5zYaTdU+Ppa4+posCVFb2A9S4uo5oApaaqc=";
46 if stdenv.hostPlatform.isLinux then [
47 # It seems that the e2fsprogs is one of the few packages that cannot be
48 # build with shared and static libs.
49 (if shared then "--enable-elf-shlibs" else "--disable-elf-shlibs")
50 "--enable-symlink-install"
51 "--enable-relative-symlinks"
53 # fsck, libblkid, libuuid and uuidd are in util-linux-ng (the "libuuid" dependency)
59 "--enable-libuuid --disable-e2initrd-helper"
62 nativeCheckInputs = [ buildPackages.perl ];
66 # avoid cycle between outputs
67 if [ -f $out/lib/${pname}/e2scrub_all_cron ]; then
68 mv $out/lib/${pname}/e2scrub_all_cron $bin/bin/
70 '' + lib.optionalString withFuse ''
72 mv $bin/bin/fuse2fs $fuse2fs/bin/fuse2fs
75 enableParallelBuilding = true;
78 simple-filesystem = runCommand "e2fsprogs-create-fs" {} ''
80 truncate -s10M $out/disc
81 ${e2fsprogs}/bin/mkfs.ext4 $out/disc | tee $out/success
82 ${e2fsprogs}/bin/e2fsck -n $out/disc | tee $out/success
87 homepage = "https://e2fsprogs.sourceforge.net/";
88 changelog = "https://e2fsprogs.sourceforge.net/e2fsprogs-release.html#${version}";
89 description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
90 license = with licenses; [
92 lgpl2Plus # lib/ext2fs, lib/e2p
96 platforms = platforms.unix;