11 stdenv.mkDerivation rec {
12 pname = "fuse-overlayfs";
15 src = fetchFromGitHub {
19 hash = "sha256-A70AxYPKph/5zRNFRDWrwl8Csc8Vf1gmOLJ39ixJgL0=";
27 buildInputs = [ fuse3 ];
29 enableParallelBuilding = true;
32 passthru.tests = { inherit (nixosTests) podman; };
35 description = "FUSE implementation for overlayfs";
36 longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
37 license = licenses.gpl3;
38 maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
39 platforms = platforms.linux;
40 inherit (src.meta) homepage;
41 mainProgram = "fuse-overlayfs";