Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
936 B
Nix
45 lines
936 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
fuse3,
|
|
nixosTests,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fuse-overlayfs";
|
|
version = "1.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "fuse-overlayfs";
|
|
rev = "v${version}";
|
|
hash = "sha256-awVDq87lxMtpTADhy8k95N/4yuGH+2Fn94j3JZzkuUY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [ fuse3 ];
|
|
|
|
enableParallelBuilding = true;
|
|
strictDeps = true;
|
|
|
|
passthru.tests = { inherit (nixosTests) podman; };
|
|
|
|
meta = with lib; {
|
|
description = "FUSE implementation for overlayfs";
|
|
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ma9e ];
|
|
teams = [ teams.podman ];
|
|
platforms = platforms.linux;
|
|
inherit (src.meta) homepage;
|
|
mainProgram = "fuse-overlayfs";
|
|
};
|
|
}
|