python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / fuse-overlayfs / default.nix
blobb874d038aa6b7c67f89e0637ae388d5c3cb8e0ac
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse3, nixosTests }:
3 stdenv.mkDerivation rec {
4   pname = "fuse-overlayfs";
5   version = "1.9";
7   src = fetchFromGitHub {
8     owner = "containers";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-+LuA9gSdVmt4iEJyeg6HbddD2YsKmkV/MJQbAgg/vJQ=";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
16   buildInputs = [ fuse3 ];
18   enableParallelBuilding = true;
19   strictDeps = true;
21   passthru.tests = { inherit (nixosTests) podman; };
23   meta = with lib; {
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;
30   };