1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/filesystems/fuse-overlayfs/default.nix

26 lines
754 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 {
name = "fuse-overlayfs-${version}";
version = "0.3";
2018-12-30 11:08:15 +00:00
2019-02-08 15:02:08 +00:00
src = fetchFromGitHub {
owner = "containers";
repo = "fuse-overlayfs";
rev = "v${version}";
sha256 = "1cch2j397hydrhh62faqa663vas75qbmylqd06fk6nafasa3ri0l";
};
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 ];
};
}