mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
libvirt: switch who makes assertions about whose version
Previously, the native libvirt package was making an assertion that the dependent Python package had a compatible version. This commit switches that so that the Python package makes the assertion, since it makes more sense to me to have a child package making an assertion about its parent than vice versa.
This commit is contained in:
parent
c26062884b
commit
8c42b26fa2
@ -1,16 +1,12 @@
|
||||
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
|
||||
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
|
||||
, libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng
|
||||
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl
|
||||
, pythonPackages, perlPackages
|
||||
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
||||
}:
|
||||
|
||||
let version = "1.2.19"; in
|
||||
|
||||
assert version == pythonPackages.libvirt.version;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libvirt-${version}";
|
||||
version = "1.2.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://libvirt.org/sources/${name}.tar.gz";
|
||||
|
@ -21724,9 +21724,10 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
libvirt = pkgs.stdenv.mkDerivation rec {
|
||||
libvirt = let
|
||||
version = "1.2.18";
|
||||
in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec {
|
||||
name = "libvirt-python-${version}";
|
||||
version = "1.2.19";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://libvirt.org/sources/python/${name}.tar.gz";
|
||||
|
Loading…
Reference in New Issue
Block a user