fea9bd7717
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lxcfs/versions. These checks were done: - built on NixOS - /nix/store/cl7h5cnf1g85ig7sd82iar0cgj1ms4f1-lxcfs-3.0.1/bin/lxcfs passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 1 of 1 passed binary check by having the new version present in output. - found 3.0.1 with grep in /nix/store/cl7h5cnf1g85ig7sd82iar0cgj1ms4f1-lxcfs-3.0.1 - directory tree listing: https://gist.github.com/76388e1795e7273b4e3035a87a0d4749 - du listing: https://gist.github.com/8217b030a3bd3d182b6edc6439ae67e0
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, help2man, fuse
|
|
, enableDebugBuild ? false }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "lxcfs-3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxc";
|
|
repo = "lxcfs";
|
|
rev = name;
|
|
sha256 = "0rwk1nbcjnp2d2zbyng8ix9dmww211aiqq8870r9p4j11xv9mgx4";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig help2man autoreconfHook ];
|
|
buildInputs = [ fuse ];
|
|
|
|
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 ];
|
|
};
|
|
}
|