Merge remote-tracking branch 'proteansec/pkgs/libvmi' into libvmi

Fix incorrect license and change maintainer.

+33
+31
pkgs/development/libraries/libvmi/default.nix
··· 1 + { stdenv, xen, which, autoreconfHook, fetchFromGitHub, yacc, bison, flex, glib, libtool, autoconf, automake, pkgconfig, libvirt }: 2 + 3 + with stdenv.lib; 4 + 5 + stdenv.mkDerivation rec { 6 + name = "libvmi-${version}"; 7 + version = "${stdenv.lib.strings.substring 0 7 rev}-2017-05-27"; 8 + rev = "3e4114a64f012f1d3e2eb660bc65dcd130295d49"; 9 + 10 + src = fetchFromGitHub { 11 + inherit rev; 12 + owner = "libvmi"; 13 + repo = "libvmi"; 14 + sha256 = "0vbmrj0ij19i55afkqj64q7sgh0scpwk3c99qx6p6gn1qcy2wdss"; 15 + }; 16 + 17 + buildInputs = [ glib xen which libvirt ]; 18 + nativeBuildInputs = [ autoreconfHook yacc bison flex libtool autoconf automake pkgconfig ]; 19 + 20 + meta = with stdenv.lib; { 21 + homepage = "http://libvmi.com/"; 22 + description = "A C library for virtual machine introspection"; 23 + longDescription = '' 24 + LibVMI is a C library with Python bindings that makes it easy to monitor the low-level 25 + details of a running virtual machine by viewing its memory, trapping on hardware events, 26 + and accessing the vCPU registers. 27 + ''; 28 + license = [ licenses.lgpl3 ]; 29 + maintainers = with maintainers; [ lschuermann ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 16870 16870 libreoffice = libreoffice-still-unwrapped; 16871 16871 }); 16872 16872 16873 + libvmi = callPackage ../development/libraries/libvmi { }; 16874 + 16873 16875 liferea = callPackage ../applications/networking/newsreaders/liferea { 16874 16876 inherit (gnome3) libpeas gsettings-desktop-schemas dconf; 16875 16877 };