mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
a51a99c690
camelCase package name was a huge inconsistency in GNOME package set.
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libvirt, glib, libxml2, intltool, libtool, yajl
|
|
, nettle, libgcrypt, pythonPackages, gobject-introspection, libcap_ng, numactl
|
|
, xen, libapparmor, vala
|
|
}:
|
|
|
|
let
|
|
inherit (pythonPackages) python pygobject2;
|
|
in stdenv.mkDerivation rec {
|
|
name = "libvirt-glib-2.0.0";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://libvirt.org/sources/glib/${name}.tar.gz";
|
|
sha256 = "0six9ckmvlwwyavyjkgc262qkpvfqgi8rjij7cyk00bmqq8c9s4l";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig vala ];
|
|
buildInputs = [
|
|
libvirt glib libxml2 intltool libtool yajl nettle libgcrypt
|
|
python pygobject2 gobject-introspection libcap_ng numactl libapparmor
|
|
] ++ stdenv.lib.optionals stdenv.isx86_64 [
|
|
xen
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|