1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libvirt-glib/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libvirt, glib, libxml2, intltool, libtool, yajl
, nettle, libgcrypt, pythonPackages, gobjectIntrospection, libcap_ng, numactl
2017-03-25 13:58:26 +00:00
, xen, libapparmor
}:
let
inherit (pythonPackages) python pygobject2;
in stdenv.mkDerivation rec {
2017-01-22 09:32:05 +00:00
name = "libvirt-glib-1.0.0";
src = fetchurl {
url = "http://libvirt.org/sources/glib/${name}.tar.gz";
2017-01-22 09:32:05 +00:00
sha256 = "0iwa5sdbii52pjpdm5j37f67sdmf0kpcky4liwhy1nf43k85i4fa";
};
buildInputs = [
pkgconfig libvirt glib libxml2 intltool libtool yajl nettle libgcrypt
2017-03-25 13:58:26 +00:00
python pygobject2 gobjectIntrospection libcap_ng numactl xen libapparmor
];
2017-03-25 13:58:26 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Library for working with virtual machines";
longDescription = ''
libvirt-glib wraps libvirt to provide a high-level object-oriented API better
suited for glib-based applications, via three libraries:
- libvirt-glib - GLib main loop integration & misc helper APIs
- libvirt-gconfig - GObjects for manipulating libvirt XML documents
- libvirt-gobject - GObjects for managing libvirt objects
'';
homepage = http://libvirt.org/;
license = licenses.lgpl2Plus;
platforms = platforms.linux;
};
}