Merge remote-tracking branch 'proteansec/pkgs/libvmi' into libvmi
Fix incorrect license and change maintainer.
This commit is contained in:
commit
fc3073c06b
31
pkgs/development/libraries/libvmi/default.nix
Normal file
31
pkgs/development/libraries/libvmi/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, xen, which, autoreconfHook, fetchFromGitHub, yacc, bison, flex, glib, libtool, autoconf, automake, pkgconfig, libvirt }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libvmi-${version}";
|
||||||
|
version = "${stdenv.lib.strings.substring 0 7 rev}-2017-05-27";
|
||||||
|
rev = "3e4114a64f012f1d3e2eb660bc65dcd130295d49";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit rev;
|
||||||
|
owner = "libvmi";
|
||||||
|
repo = "libvmi";
|
||||||
|
sha256 = "0vbmrj0ij19i55afkqj64q7sgh0scpwk3c99qx6p6gn1qcy2wdss";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ glib xen which libvirt ];
|
||||||
|
nativeBuildInputs = [ autoreconfHook yacc bison flex libtool autoconf automake pkgconfig ];
|
||||||
|
|
||||||
|
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 = [ licenses.lgpl3 ];
|
||||||
|
maintainers = with maintainers; [ lschuermann ];
|
||||||
|
};
|
||||||
|
}
|
@ -16870,6 +16870,8 @@ with pkgs;
|
|||||||
libreoffice = libreoffice-still-unwrapped;
|
libreoffice = libreoffice-still-unwrapped;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
libvmi = callPackage ../development/libraries/libvmi { };
|
||||||
|
|
||||||
liferea = callPackage ../applications/networking/newsreaders/liferea {
|
liferea = callPackage ../applications/networking/newsreaders/liferea {
|
||||||
inherit (gnome3) libpeas gsettings-desktop-schemas dconf;
|
inherit (gnome3) libpeas gsettings-desktop-schemas dconf;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user