mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
1610ee03f1
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
98 lines
2.0 KiB
Nix
98 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
autoreconfHook,
|
|
autoconf-archive,
|
|
bison,
|
|
flex,
|
|
glib,
|
|
pkg-config,
|
|
json_c,
|
|
libvirt,
|
|
|
|
withVMIFS ? true,
|
|
fuse,
|
|
|
|
legacyKVM ? false,
|
|
libkvmi,
|
|
|
|
xenSupport ? true,
|
|
xen,
|
|
}:
|
|
|
|
let
|
|
pname = "libvmi";
|
|
version = "0.14.0-unstable-2024-09-18";
|
|
libVersion = "0.0.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libvmi";
|
|
repo = "libvmi";
|
|
rev = "60ddb31abee62e9bf323c62d4af6ee59b7e2436a";
|
|
hash = "sha256-IOMfOzp9o2M//GlwOg770aNzPG5IBdc6Omw9O1SEyD4=";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit pname version src;
|
|
|
|
outputs = [
|
|
"out"
|
|
"lib"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
autoconf-archive
|
|
bison
|
|
flex
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
glib
|
|
json_c
|
|
libvirt
|
|
]
|
|
++ lib.optionals xenSupport [ xen ]
|
|
++ lib.optionals (!legacyKVM) [ libkvmi ]
|
|
++ lib.optionals withVMIFS [ fuse ];
|
|
|
|
configureFlags =
|
|
lib.optionals (!xenSupport) [ "--disable-xen" ]
|
|
++ lib.optionals legacyKVM [ "--enable-kvm-legacy" ]
|
|
++ lib.optionals withVMIFS [ "--enable-vmifs" ];
|
|
|
|
# libvmi uses dlopen() for the xen libraries, however autoPatchelfHook doesn't work here
|
|
postFixup = lib.optionalString xenSupport ''
|
|
libvmi="$lib/lib/libvmi.so.${libVersion}"
|
|
oldrpath=$(patchelf --print-rpath "$libvmi")
|
|
patchelf --set-rpath "$oldrpath:${lib.makeLibraryPath [ xen ]}" "$libvmi"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = unstableGitUpdater { tagPrefix = "v"; };
|
|
inherit libVersion;
|
|
};
|
|
|
|
meta = {
|
|
description = "C library for virtual machine introspection";
|
|
longDescription = ''
|
|
LibVMI is a C library with Python bindings that makes it easy to monitor the low-level
|
|
details of a running virtual machine by viewing its memory, trapping on hardware events,
|
|
and accessing the vCPU registers.
|
|
'';
|
|
homepage = "https://libvmi.com/";
|
|
license = with lib.licenses; [
|
|
gpl3Only
|
|
lgpl3Only
|
|
];
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with lib.maintainers; [ sigmasquadron ];
|
|
};
|
|
}
|