27 lines
714 B
Nix
Raw Normal View History

2019-02-08 16:02:08 +01:00
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
2018-12-30 05:08:15 -06:00
2019-02-08 16:02:08 +01:00
stdenv.mkDerivation rec {
2019-06-09 15:32:10 -05:00
pname = "fuse-overlayfs";
2019-12-12 19:41:03 +08:00
version = "0.7.2";
2018-12-30 05:08:15 -06:00
2019-02-08 16:02:08 +01:00
src = fetchFromGitHub {
owner = "containers";
2019-06-09 15:32:10 -05:00
repo = pname;
2019-02-08 16:02:08 +01:00
rev = "v${version}";
2019-12-12 19:41:03 +08:00
sha256 = "1ybrki63ixrkraynms5i4jiil9901whwxs6p61h2c2ild8w2ir8n";
2019-02-08 16:02:08 +01:00
};
2018-12-30 05:08:15 -06:00
2019-02-08 16:02:08 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2019-12-12 19:41:03 +08:00
2019-02-08 16:02:08 +01:00
buildInputs = [ fuse3 ];
2018-12-30 05:08:15 -06:00
2019-02-08 16:02:08 +01:00
meta = with lib; {
description = "FUSE implementation for overlayfs";
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
license = licenses.gpl3;
2019-12-12 19:41:03 +08:00
maintainers = with maintainers; [ ma9e ];
2019-02-08 16:02:08 +01:00
platforms = platforms.unix;
2019-12-12 19:41:03 +08:00
inherit (src.meta) homepage;
2019-02-08 16:02:08 +01:00
};
}