2019-02-03 16:33:22 +01:00
|
|
|
{ config, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse
|
2020-06-05 14:37:14 +02:00
|
|
|
, utillinux, makeWrapper
|
2019-02-03 16:33:22 +01:00
|
|
|
, enableDebugBuild ? config.lxcfs.enableDebugBuild or false }:
|
2016-11-21 14:11:40 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-05 16:55:12 +02:00
|
|
|
name = "lxcfs-4.0.4";
|
2016-11-21 14:11:40 +01:00
|
|
|
|
2017-03-01 23:02:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lxc";
|
|
|
|
repo = "lxcfs";
|
2017-06-20 02:01:53 +02:00
|
|
|
rev = name;
|
2020-07-05 16:55:12 +02:00
|
|
|
sha256 = "0m97h9mj23i2cb8r4bqpakhnz4a0bb7jxvr207pydq60railp7nm";
|
2016-11-21 14:11:40 +01:00
|
|
|
};
|
|
|
|
|
2017-03-01 23:02:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
|
2020-06-05 14:37:14 +02:00
|
|
|
buildInputs = [ fuse makeWrapper ];
|
2016-11-21 14:11:40 +01:00
|
|
|
|
2017-11-07 12:01:42 +01:00
|
|
|
preConfigure = stdenv.lib.optionalString enableDebugBuild ''
|
2017-11-02 02:38:39 +01:00
|
|
|
sed -i 's,#AM_CFLAGS += -DDEBUG,AM_CFLAGS += -DDEBUG,' Makefile.am
|
|
|
|
'';
|
|
|
|
|
2016-11-21 14:11:40 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-init-script=systemd"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [ "SYSTEMD_UNIT_DIR=\${out}/lib/systemd" ];
|
|
|
|
|
2020-06-05 14:37:14 +02:00
|
|
|
postInstall = ''
|
|
|
|
# `mount` hook requires access to the `mount` command from `utillinux`:
|
|
|
|
wrapProgram "$out/share/lxcfs/lxc.mount.hook" \
|
|
|
|
--prefix PATH : "${utillinux}/bin"
|
|
|
|
'';
|
|
|
|
|
2016-11-21 14:11:40 +01:00
|
|
|
postFixup = ''
|
|
|
|
# liblxcfs.so is reloaded with dlopen()
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath "$out/bin/lxcfs"):$out/lib" "$out/bin/lxcfs"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-03-08 19:43:29 +01:00
|
|
|
homepage = "https://linuxcontainers.org/lxcfs";
|
2016-11-21 14:11:40 +01:00
|
|
|
description = "FUSE filesystem for LXC";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
2017-06-20 02:01:53 +02:00
|
|
|
maintainers = with maintainers; [ mic92 fpletz ];
|
2016-11-21 14:11:40 +01:00
|
|
|
};
|
|
|
|
}
|