2020-03-17 15:18:26 -07:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config, fuse3 }:
|
2018-12-30 03:08:15 -08:00
|
|
|
|
2019-02-08 07:02:08 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-09 13:32:10 -07:00
|
|
|
pname = "fuse-overlayfs";
|
2020-03-17 15:18:26 -07:00
|
|
|
version = "0.7.8";
|
2018-12-30 03:08:15 -08:00
|
|
|
|
2019-02-08 07:02:08 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "containers";
|
2019-06-09 13:32:10 -07:00
|
|
|
repo = pname;
|
2019-02-08 07:02:08 -08:00
|
|
|
rev = "v${version}";
|
2020-03-17 15:18:26 -07:00
|
|
|
sha256 = "10wsssf9mxgkgcqks3z02y9ya8xh4wd45lsb1jrvw31wmz9zpalc";
|
2019-02-08 07:02:08 -08:00
|
|
|
};
|
2018-12-30 03:08:15 -08:00
|
|
|
|
2020-03-17 15:18:26 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2019-12-12 03:41:03 -08:00
|
|
|
|
2019-02-08 07:02:08 -08:00
|
|
|
buildInputs = [ fuse3 ];
|
2018-12-30 03:08:15 -08:00
|
|
|
|
2019-02-08 07:02:08 -08:00
|
|
|
meta = with lib; {
|
|
|
|
description = "FUSE implementation for overlayfs";
|
|
|
|
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
|
|
|
|
license = licenses.gpl3;
|
2020-04-03 03:11:28 -07:00
|
|
|
maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
|
2019-02-08 07:02:08 -08:00
|
|
|
platforms = platforms.unix;
|
2019-12-12 03:41:03 -08:00
|
|
|
inherit (src.meta) homepage;
|
2019-02-08 07:02:08 -08:00
|
|
|
};
|
|
|
|
}
|