mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
83 lines
1.7 KiB
Nix
83 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fuse3,
|
|
help2man,
|
|
makeWrapper,
|
|
meson,
|
|
ninja,
|
|
nix-update-script,
|
|
nixosTests,
|
|
pkg-config,
|
|
python3,
|
|
util-linux,
|
|
coreutils,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lxcfs";
|
|
version = "6.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxc";
|
|
repo = "lxcfs";
|
|
rev = "v${version}";
|
|
hash = "sha256-5r1X/yUXTMC/2dNhpI+BVYeClIydefg2lurCGt7iA8Y=";
|
|
};
|
|
|
|
patches = [
|
|
# skip RPM spec generation
|
|
./no-spec.patch
|
|
|
|
# skip installing systemd files
|
|
./skip-init.patch
|
|
|
|
# fix pidfd checks and include
|
|
./pidfd.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
help2man
|
|
makeWrapper
|
|
ninja
|
|
(python3.withPackages (p: [ p.jinja2 ]))
|
|
pkg-config
|
|
];
|
|
buildInputs = [ fuse3 ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs tools/
|
|
'';
|
|
|
|
postInstall = ''
|
|
# `mount` hook requires access to the `mount` command from `util-linux` and `readlink` from `coreutils`:
|
|
wrapProgram "$out/share/lxcfs/lxc.mount.hook" --prefix PATH : ${lib.makeBinPath [ coreutils util-linux ]}
|
|
'';
|
|
|
|
postFixup = ''
|
|
# liblxcfs.so is reloaded with dlopen()
|
|
patchelf --set-rpath "$(patchelf --print-rpath "$out/bin/lxcfs"):$out/lib" "$out/bin/lxcfs"
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
incus-container-legacy-init = nixosTests.incus.container-legacy-init;
|
|
incus-container-systemd-init = nixosTests.incus.container-systemd-init;
|
|
};
|
|
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "FUSE filesystem for LXC";
|
|
mainProgram = "lxcfs";
|
|
homepage = "https://linuxcontainers.org/lxcfs";
|
|
changelog = "https://linuxcontainers.org/lxcfs/news/";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = lib.teams.lxc.members;
|
|
};
|
|
}
|