nixpkgs/pkgs/tools/filesystems/fuse-overlayfs/default.nix
2019-11-25 17:35:30 -08:00

26 lines
733 B
Nix

{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
stdenv.mkDerivation rec {
pname = "fuse-overlayfs";
version = "0.7";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
sha256 = "1nhqy1fdzhkjhqs54nq66zj5bf85n3gr4k6zl0hswdvhg6flkg75";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse3 ];
meta = with lib; {
homepage = https://github.com/containers/fuse-overlayfs;
description = "FUSE implementation for overlayfs";
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.ma9e ];
};
}