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

26 lines
735 B
Nix
Raw Normal View History

2019-02-08 15:02:08 +00:00
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
2018-12-30 11:08:15 +00:00
2019-02-08 15:02:08 +00:00
stdenv.mkDerivation rec {
2019-06-09 20:32:10 +00:00
pname = "fuse-overlayfs";
version = "0.6.2";
2018-12-30 11:08:15 +00:00
2019-02-08 15:02:08 +00:00
src = fetchFromGitHub {
owner = "containers";
2019-06-09 20:32:10 +00:00
repo = pname;
2019-02-08 15:02:08 +00:00
rev = "v${version}";
sha256 = "03gad89jg0dif5wqdl1kh0rpmfc80pnkx8hk0v4hrlirr130dgl2";
2019-02-08 15:02:08 +00:00
};
2018-12-30 11:08:15 +00:00
2019-02-08 15:02:08 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse3 ];
2018-12-30 11:08:15 +00:00
2019-02-08 15:02:08 +00:00
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 ];
};
}