2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse3, nixosTests }:
|
2018-12-30 11:08:15 +00:00
|
|
|
|
2019-02-08 15:02:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-09 21:32:10 +01:00
|
|
|
pname = "fuse-overlayfs";
|
2021-03-25 15:48:22 +00:00
|
|
|
version = "1.5.0";
|
2018-12-30 11:08:15 +00:00
|
|
|
|
2019-02-08 15:02:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "containers";
|
2019-06-09 21:32:10 +01:00
|
|
|
repo = pname;
|
2019-02-08 15:02:08 +00:00
|
|
|
rev = "v${version}";
|
2021-03-25 15:48:22 +00:00
|
|
|
sha256 = "sha256-/gdmrQhYsE4a/1sxtJ5IfVUWjh08wTVrOr4V7Fkn1i0=";
|
2019-02-08 15:02:08 +00:00
|
|
|
};
|
2018-12-30 11:08:15 +00:00
|
|
|
|
2020-03-17 22:18:26 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2019-12-12 11:41:03 +00:00
|
|
|
|
2019-02-08 15:02:08 +00:00
|
|
|
buildInputs = [ fuse3 ];
|
2018-12-30 11:08:15 +00:00
|
|
|
|
2020-08-23 23:38:10 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) podman; };
|
2020-05-19 01:41:00 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-02-08 15:02:08 +00:00
|
|
|
description = "FUSE implementation for overlayfs";
|
|
|
|
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
|
|
|
|
license = licenses.gpl3;
|
2020-04-03 11:11:28 +01:00
|
|
|
maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
|
2020-05-11 20:24:49 +01:00
|
|
|
platforms = platforms.linux;
|
2019-12-12 11:41:03 +00:00
|
|
|
inherit (src.meta) homepage;
|
2019-02-08 15:02:08 +00:00
|
|
|
};
|
|
|
|
}
|