2019-02-03 15:33:22 +00:00
|
|
|
{ config, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse
|
|
|
|
, enableDebugBuild ? config.lxcfs.enableDebugBuild or false }:
|
2016-11-21 13:11:40 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-15 12:07:46 +00:00
|
|
|
name = "lxcfs-3.0.3";
|
2016-11-21 13:11:40 +00:00
|
|
|
|
2017-03-01 22:02:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lxc";
|
|
|
|
repo = "lxcfs";
|
2017-06-20 01:01:53 +01:00
|
|
|
rev = name;
|
2018-12-15 12:07:46 +00:00
|
|
|
sha256 = "0imn031qpi1qfr1qw0ggpgcg8y6v0ykdr3m7f2czkiz3l7qqx2in";
|
2016-11-21 13:11:40 +00:00
|
|
|
};
|
|
|
|
|
2017-03-01 22:02:53 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
|
2018-04-09 08:13:23 +01:00
|
|
|
buildInputs = [ fuse ];
|
2016-11-21 13:11:40 +00:00
|
|
|
|
2017-11-07 11:01:42 +00:00
|
|
|
preConfigure = stdenv.lib.optionalString enableDebugBuild ''
|
2017-11-02 01:38:39 +00:00
|
|
|
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" ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
# liblxcfs.so is reloaded with dlopen()
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath "$out/bin/lxcfs"):$out/lib" "$out/bin/lxcfs"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://linuxcontainers.org/lxcfs;
|
|
|
|
description = "FUSE filesystem for LXC";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
2017-06-20 01:01:53 +01:00
|
|
|
maintainers = with maintainers; [ mic92 fpletz ];
|
2016-11-21 13:11:40 +00:00
|
|
|
};
|
|
|
|
}
|