mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
994e18df0a
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
26 lines
735 B
Nix
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 ];
|
|
};
|
|
}
|