nixpkgs/pkgs/os-specific/linux/lxcfs/default.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

{ config, lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, help2man, fuse
2020-11-24 15:29:28 +00:00
, util-linux, makeWrapper
2019-02-03 15:33:22 +00:00
, enableDebugBuild ? config.lxcfs.enableDebugBuild or false }:
2016-11-21 13:11:40 +00:00
2021-01-15 14:45:37 +00:00
with lib;
2016-11-21 13:11:40 +00:00
stdenv.mkDerivation rec {
2020-08-14 20:09:18 +00:00
pname = "lxcfs";
2021-01-20 05:15:04 +00:00
version = "4.0.7";
2016-11-21 13:11:40 +00:00
2017-03-01 22:02:53 +00:00
src = fetchFromGitHub {
owner = "lxc";
repo = "lxcfs";
2020-08-14 20:09:18 +00:00
rev = "lxcfs-${version}";
2021-01-20 05:15:04 +00:00
sha256 = "sha256-gC1Q+kG/oKfYvuHVKstpRWfL/thsemULrimPrV/eeaI=";
2016-11-21 13:11:40 +00:00
};
nativeBuildInputs = [ pkg-config help2man autoreconfHook ];
buildInputs = [ fuse makeWrapper ];
2016-11-21 13:11:40 +00:00
2021-01-15 14:45:37 +00:00
preConfigure = lib.optionalString enableDebugBuild ''
sed -i 's,#AM_CFLAGS += -DDEBUG,AM_CFLAGS += -DDEBUG,' Makefile.am
'';
2016-11-21 13:11:40 +00:00
configureFlags = [
"--with-init-script=systemd"
"--sysconfdir=/etc"
"--localstatedir=/var"
];
installFlags = [ "SYSTEMD_UNIT_DIR=\${out}/lib/systemd" ];
postInstall = ''
2020-11-24 15:29:28 +00:00
# `mount` hook requires access to the `mount` command from `util-linux`:
wrapProgram "$out/share/lxcfs/lxc.mount.hook" \
2020-11-24 15:29:28 +00:00
--prefix PATH : "${util-linux}/bin"
'';
2016-11-21 13:11:40 +00:00
postFixup = ''
# liblxcfs.so is reloaded with dlopen()
patchelf --set-rpath "$(patchelf --print-rpath "$out/bin/lxcfs"):$out/lib" "$out/bin/lxcfs"
'';
meta = {
description = "FUSE filesystem for LXC";
2020-08-14 20:09:18 +00:00
homepage = "https://linuxcontainers.org/lxcfs";
changelog = "https://linuxcontainers.org/lxcfs/news/";
2016-11-21 13:11:40 +00:00
license = licenses.asl20;
platforms = platforms.linux;
2017-06-20 00:01:53 +00:00
maintainers = with maintainers; [ mic92 fpletz ];
2016-11-21 13:11:40 +00:00
};
}