nixpkgs/pkgs/tools/filesystems/fuse-overlayfs/default.nix
R. RyanTM 994e18df0a fuse-overlayfs: 0.5.1 -> 0.6.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fuse-overlayfs/versions
2019-09-26 08:19:50 -07:00

26 lines
735 B
Nix

{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig, fuse3 }:
stdenv.mkDerivation rec {
pname = "fuse-overlayfs";
version = "0.6.2";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
sha256 = "03gad89jg0dif5wqdl1kh0rpmfc80pnkx8hk0v4hrlirr130dgl2";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse3 ];
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 ];
};
}