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

29 lines
801 B
Nix
Raw Normal View History

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