commit
6fd7f31c1e
43
pkgs/development/libraries/libvmi/default.nix
Normal file
43
pkgs/development/libraries/libvmi/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ stdenv,
|
||||
fetchFromGitHub,
|
||||
autoreconfHook,
|
||||
bison,
|
||||
flex,
|
||||
glib,
|
||||
pkgconfig,
|
||||
json_c,
|
||||
xen,
|
||||
libvirt,
|
||||
xenSupport ? true }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libvmi-${version}";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libvmi";
|
||||
repo = "libvmi";
|
||||
rev = "v${version}";
|
||||
sha256 = "0wbi2nasb1gbci6cq23g6kq7i10rwi1y7r44rl03icr5prqjpdyv";
|
||||
};
|
||||
|
||||
buildInputs = [ glib libvirt json_c ] ++ (optional xenSupport xen);
|
||||
nativeBuildInputs = [ autoreconfHook bison flex pkgconfig ];
|
||||
|
||||
configureFlags = optional (!xenSupport) "--disable-xen";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://libvmi.com/";
|
||||
description = "A 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.
|
||||
'';
|
||||
license = with licenses; [ gpl3 lgpl3 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ lschuermann ];
|
||||
};
|
||||
}
|
@ -16943,6 +16943,8 @@ with pkgs;
|
||||
libreoffice = libreoffice-still-unwrapped;
|
||||
});
|
||||
|
||||
libvmi = callPackage ../development/libraries/libvmi { };
|
||||
|
||||
liferea = callPackage ../applications/networking/newsreaders/liferea {
|
||||
inherit (gnome3) libpeas gsettings-desktop-schemas dconf;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user