nixpkgs/pkgs/tools/filesystems/fuse-overlayfs/default.nix

27 lines
714 B
Nix

{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
stdenv.mkDerivation rec {
pname = "fuse-overlayfs";
version = "0.7.6";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
sha256 = "1sgl6npbhg49aqlxmm3bnk3cmi9xpg8i5m4hickqfk1ni1z070ij";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse3 ];
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 ];
platforms = platforms.unix;
inherit (src.meta) homepage;
};
}