lol

libvirt: correct localstatedir (#109415)

It was supposed to be '/var' rather than '/var/lib'. This fixes an issue
where some tools don't connect to the right socket (because they were
connecting to '$localstatedir/run/libvirt...' instead of
'$runstatedir/libvirt...').

Also change runstatedir to just be '/run' since it avoids a log line
complaining about that.

authored by

Euan Kemp and committed by
GitHub
145cf67b bb3e0885

+2 -2
+2 -2
pkgs/development/libraries/libvirt/default.nix
··· 88 88 in [ 89 89 "--sysconfdir=/var/lib" 90 90 "-Dinstall_prefix=${placeholder "out"}" 91 - "-Dlocalstatedir=/var/lib" 92 - "-Drunstatedir=/var/run" 91 + "-Dlocalstatedir=/var" 92 + "-Drunstatedir=/run" 93 93 "-Dlibpcap=enabled" 94 94 "-Ddriver_qemu=enabled" 95 95 "-Ddriver_vmware=enabled"