9522d06e85
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/lxcfs/versions. These checks were done: - built on NixOS - ran `/nix/store/8zp1vyhabqmk756rycka64phbc77q0pf-lxcfs-3.0.0/bin/lxcfs --version` and found version 3.0.0 - found 3.0.0 with grep in /nix/store/8zp1vyhabqmk756rycka64phbc77q0pf-lxcfs-3.0.0 - directory tree listing: https://gist.github.com/a1cba7cee628c2f7061269bc3f706957
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse, pam
|
|
, enableDebugBuild ? false }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "lxcfs-3.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxc";
|
|
repo = "lxcfs";
|
|
rev = name;
|
|
sha256 = "0fsy2h7b5dkzvfm6m8vqzhnji42cszdn0b3ndnaxiwv3402ccmvk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
|
|
buildInputs = [ fuse pam ];
|
|
|
|
preConfigure = stdenv.lib.optionalString enableDebugBuild ''
|
|
sed -i 's,#AM_CFLAGS += -DDEBUG,AM_CFLAGS += -DDEBUG,' Makefile.am
|
|
'';
|
|
|
|
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;
|
|
maintainers = with maintainers; [ mic92 fpletz ];
|
|
};
|
|
}
|