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

43 lines
1.1 KiB
Nix
Raw Normal View History

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 {
name = "lxcfs-3.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;
sha256 = "0imn031qpi1qfr1qw0ggpgcg8y6v0ykdr3m7f2czkiz3l7qqx2in";
2016-11-21 14:11:40 +01:00
};
2017-03-01 23:02:53 +01:00
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
buildInputs = [ fuse ];
2016-11-21 14:11:40 +01:00
preConfigure = stdenv.lib.optionalString enableDebugBuild ''
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
};
}