fuse-overlayfs: init at 0.2
This commit is contained in:
parent
a4e098519b
commit
f1f9543768
27
pkgs/tools/filesystems/fuse-overlayfs/default.nix
Normal file
27
pkgs/tools/filesystems/fuse-overlayfs/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ pkgs, lib, autoreconfHook, pkgconfig, fuse3 }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.2";
|
||||||
|
in
|
||||||
|
pkgs.stdenv.mkDerivation {
|
||||||
|
name = "fuse-overlayfs-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "containers";
|
||||||
|
repo = "fuse-overlayfs";
|
||||||
|
rev = "1e2b65baa2f75eea0e4bab90b5ac81dd8471256c";
|
||||||
|
sha256 = "0a9ix8rqjs5r28jsriyiv4yq7iilmv69x05kf23s1ihzrvrfkl08";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2813,6 +2813,8 @@ in
|
|||||||
|
|
||||||
fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { };
|
fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { };
|
||||||
|
|
||||||
|
fuse-overlayfs = callPackage ../tools/filesystems/fuse-overlayfs {};
|
||||||
|
|
||||||
fusee-launcher = callPackage ../development/tools/fusee-launcher { };
|
fusee-launcher = callPackage ../development/tools/fusee-launcher { };
|
||||||
|
|
||||||
fwknop = callPackage ../tools/security/fwknop { };
|
fwknop = callPackage ../tools/security/fwknop { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user