summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/libvirt/default.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-08-25 23:51:18 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-08-25 23:51:18 +0200
commit6dfe57adf63b0b63da2d3d61dec355e987d48704 (patch)
tree5f81eee59380b7b569e843356216e5084c1976b8 /pkgs/development/libraries/libvirt/default.nix
parent857efbb889de332e0c42d7c3e712a4b508a96166 (diff)
libvirt: remove ? null from packages which have boolean inputs, normalize meta.description
Diffstat (limited to 'pkgs/development/libraries/libvirt/default.nix')
-rw-r--r--pkgs/development/libraries/libvirt/default.nix25
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix
index adc9409ddf5c..28b9ff50251d 100644
--- a/pkgs/development/libraries/libvirt/default.nix
+++ b/pkgs/development/libraries/libvirt/default.nix
@@ -58,23 +58,23 @@
, util-linux ? null
# Darwin
-, gmp ? null
-, libiconv ? null
-, Carbon ? null
-, AppKit ? null
+, gmp
+, libiconv
+, Carbon
+, AppKit
# Options
, enableCeph ? false
-, ceph ? null
+, ceph
, enableGlusterfs ? false
-, glusterfs ? null
+, glusterfs
, enableIscsi ? false
-, openiscsi ? null
-, libiscsi ? null
+, openiscsi
+, libiscsi
, enableXen ? false
-, xen ? null
+, xen
, enableZfs ? stdenv.isLinux
-, zfs ? null
+, zfs
}:
with lib;
@@ -354,10 +354,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://libvirt.org/";
- description = ''
- A toolkit to interact with the virtualization capabilities of recent
- versions of Linux (and other OSes)
- '';
+ description = "A toolkit to interact with the virtualization capabilities of recent versions of Linux and other OSes";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz globin lovesegfault ];