2017-11-07 12:01:42 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse, pam
|
|
|
|
, enableDebugBuild ? false }:
|
2016-11-21 14:11:40 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-28 12:32:21 +02:00
|
|
|
name = "lxcfs-3.0.0";
|
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;
|
2018-03-28 12:32:21 +02:00
|
|
|
sha256 = "0fsy2h7b5dkzvfm6m8vqzhnji42cszdn0b3ndnaxiwv3402ccmvk";
|
2016-11-21 14:11:40 +01:00
|
|
|
};
|
|
|
|
|
2017-03-01 23:02:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
|
2016-11-21 14:11:40 +01:00
|
|
|
buildInputs = [ fuse pam ];
|
|
|
|
|
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" ];
|
|
|
|
|
|
|
|
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 02:01:53 +02:00
|
|
|
maintainers = with maintainers; [ mic92 fpletz ];
|
2016-11-21 14:11:40 +01:00
|
|
|
};
|
|
|
|
}
|