diff options
author | Marius Bakke <marius@gnu.org> | 2023-01-03 15:38:13 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2023-01-03 15:38:13 +0100 |
commit | 9123bb0fba3fce976dc41cd3b8919ee73b4cee4d (patch) | |
tree | 50ba63a4a3a6ffeb2f37fd0929813b51e00d01dc /gnu/packages/file-systems.scm | |
parent | ec0fbb471dfc6f72796da9ebafbb0630daa91267 (diff) | |
parent | 71ee1fbbed8ea9788dd48a634653d66606d372ce (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 57a25a0d90..3d45634169 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -1766,3 +1766,27 @@ and modifying @acronym{UDF, Universal Disk Format} file systems. and other optical media. It supports read-only media (DVD/CD-R) and rewritable media that wears out (DVD/CD-RW).") (license license:gpl2+))) + +(define-public fuse-overlayfs + (package + (name "fuse-overlayfs") + (version "1.10") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/containers/fuse-overlayfs") + (commit (string-append "v" version)))) + (sha256 + (base32 + "085hrz0nrdsjfjci0z2qfyqrydn8wwdp790dx2x67hwdw1kib3wp")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (native-inputs + (list automake autoconf libtool pkg-config)) + (inputs + (list fuse-3)) + (home-page "https://github.com/containers/fuse-overlayfs") + (synopsis "FUSE implementation of overlayfs") + (description "This package provides an implementation of overlay+shiftfs +in FUSE for rootless containers.") + (license license:gpl3))) |