2019-02-03 16:33:22 +01:00
|
|
|
{ config, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse
|
|
|
|
, enableDebugBuild ? config.lxcfs.enableDebugBuild or false }:
|
2016-11-21 14:11:40 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-05 22:32:26 +02:00
|
|
|
name = "lxcfs-4.0.3";
|
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-05-05 22:32:26 +02:00
|
|
|
sha256 = "0v6c5vc3i1l4sy4iamzdqvwibj6xr1lna4w1hxkn3s6jggcbxwca";
|
2016-11-21 14:11:40 +01:00
|
|
|
};
|
|
|
|
|
2017-03-01 23:02:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
|
2018-04-09 09:13:23 +02:00
|
|
|
buildInputs = [ fuse ];
|
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" ];
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|