9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{ config, lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, help2man, fuse
|
|
, util-linux, makeWrapper
|
|
, enableDebugBuild ? config.lxcfs.enableDebugBuild or false }:
|
|
|
|
with lib;
|
|
stdenv.mkDerivation rec {
|
|
pname = "lxcfs";
|
|
version = "4.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxc";
|
|
repo = "lxcfs";
|
|
rev = "lxcfs-${version}";
|
|
sha256 = "1fp2q4y3ql4xd2lp4bpcl8s6xryr5xbb56da9d20w2cdr2d0lwyv";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config help2man autoreconfHook ];
|
|
buildInputs = [ fuse makeWrapper ];
|
|
|
|
preConfigure = 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" ];
|
|
|
|
postInstall = ''
|
|
# `mount` hook requires access to the `mount` command from `util-linux`:
|
|
wrapProgram "$out/share/lxcfs/lxc.mount.hook" \
|
|
--prefix PATH : "${util-linux}/bin"
|
|
'';
|
|
|
|
postFixup = ''
|
|
# liblxcfs.so is reloaded with dlopen()
|
|
patchelf --set-rpath "$(patchelf --print-rpath "$out/bin/lxcfs"):$out/lib" "$out/bin/lxcfs"
|
|
'';
|
|
|
|
meta = {
|
|
description = "FUSE filesystem for LXC";
|
|
homepage = "https://linuxcontainers.org/lxcfs";
|
|
changelog = "https://linuxcontainers.org/lxcfs/news/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ mic92 fpletz ];
|
|
};
|
|
}
|