summary refs log tree commit diff
path: root/pkgs/development/libraries/libvirt-glib
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2019-08-20 20:49:10 +0300
committerRobin Gloster <mail@glob.in>2019-08-29 15:16:34 +0200
commit066bd13613b1ce70b439608c4ee1c91150bfa2f6 (patch)
tree76e46cb0c9879a27e0b2eb388a1ba4ab8e98a67f /pkgs/development/libraries/libvirt-glib
parent0fc011ed25c93d1da5a08a2990cef39a5b26f24e (diff)
downloadnixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.tar
nixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.tar.gz
nixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.tar.bz2
nixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.tar.lz
nixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.tar.xz
nixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.tar.zst
nixpkgs-066bd13613b1ce70b439608c4ee1c91150bfa2f6.zip
libvirt-glib: remove unused packages
Diffstat (limited to 'pkgs/development/libraries/libvirt-glib')
-rw-r--r--pkgs/development/libraries/libvirt-glib/default.nix22
1 files changed, 7 insertions, 15 deletions
diff --git a/pkgs/development/libraries/libvirt-glib/default.nix b/pkgs/development/libraries/libvirt-glib/default.nix
index 9dd89133f4b..1803ce1dc20 100644
--- a/pkgs/development/libraries/libvirt-glib/default.nix
+++ b/pkgs/development/libraries/libvirt-glib/default.nix
@@ -1,12 +1,8 @@
-{ stdenv, fetchurl, pkgconfig, libvirt, glib, libxml2, intltool, libtool, yajl
-, nettle, libgcrypt, pythonPackages, gobject-introspection, libcap_ng, numactl
-, libapparmor, vala
-, xenSupport ? false, xen ? null
+{ stdenv, fetchurl, pkgconfig, gobject-introspection, intltool, vala
+, libcap_ng, libvirt, libxml2
 }:
 
-let
-  inherit (pythonPackages) python pygobject2;
-in stdenv.mkDerivation rec {
+stdenv.mkDerivation rec {
   name = "libvirt-glib-2.0.0";
 
   outputs = [ "out" "dev" ];
@@ -16,15 +12,11 @@ in stdenv.mkDerivation rec {
     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 xenSupport [
-    xen
-  ];
+  nativeBuildInputs = [ pkgconfig intltool vala gobject-introspection ];
+  buildInputs = [ libcap_ng libvirt libxml2 gobject-introspection ];
 
   enableParallelBuilding = true;
+  strictDeps = true;
 
   meta = with stdenv.lib; {
     description = "Library for working with virtual machines";
@@ -36,7 +28,7 @@ in stdenv.mkDerivation rec {
       - libvirt-gconfig - GObjects for manipulating libvirt XML documents
       - libvirt-gobject - GObjects for managing libvirt objects
     '';
-    homepage = http://libvirt.org/;
+    homepage = https://libvirt.org/;
     license = licenses.lgpl2Plus;
     platforms = platforms.linux;
   };