1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse3, nixosTests }:
3 stdenv.mkDerivation rec {
4 pname = "fuse-overlayfs";
7 src = fetchFromGitHub {
11 sha256 = "sha256-+LuA9gSdVmt4iEJyeg6HbddD2YsKmkV/MJQbAgg/vJQ=";
14 nativeBuildInputs = [ autoreconfHook pkg-config ];
16 buildInputs = [ fuse3 ];
18 enableParallelBuilding = true;
21 passthru.tests = { inherit (nixosTests) podman; };
24 description = "FUSE implementation for overlayfs";
25 longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
26 license = licenses.gpl3;
27 maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
28 platforms = platforms.linux;
29 inherit (src.meta) homepage;