nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #84817 from pbogdan/libvirt-6.2.0

libvirt: 6.1.0 -> 6.2.0

authored by

worldofpeace and committed by
GitHub
939fcdcb 80425c3c

+8 -8
+3 -3
pkgs/development/libraries/libvirt/default.nix
··· 17 17 buildFromTarball = stdenv.isDarwin; 18 18 in stdenv.mkDerivation rec { 19 19 pname = "libvirt"; 20 - version = "6.1.0"; 20 + version = "6.2.0"; 21 21 22 22 src = 23 23 if buildFromTarball then 24 24 fetchurl { 25 25 url = "http://libvirt.org/sources/${pname}-${version}.tar.xz"; 26 - sha256 = "1h7bmd7zgl64mwnxx4ji8l0mqmcbfxsx6kp1scyyfq2mwidihz0n"; 26 + sha256 = "1c8grqf751blsgs15wx2p05wvankdrady6290vwc85v94cgqij5f"; 27 27 } 28 28 else 29 29 fetchgit { 30 30 url = git://libvirt.org/libvirt.git; 31 31 rev = "v${version}"; 32 - sha256 = "18sr3jvpxn45c4vrjzpa4qgnnfxxh95v6l6qk31zka3siv8rrwqx"; 32 + sha256 = "1wyihi8bhwsck9b7f3b8yhlz145sjdyyj3ykjiszrqnp0y99xxy2"; 33 33 fetchSubmodules = true; 34 34 }; 35 35
+2 -2
pkgs/development/python-modules/libvirt/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "libvirt"; 5 - version = "6.1.0"; 5 + version = "6.2.0"; 6 6 7 7 src = assert version == libvirt.version; fetchgit { 8 8 url = git://libvirt.org/libvirt-python.git; 9 9 rev = "v${version}"; 10 - sha256 = "0h3w1p5y4kg2hdbhxmg4lphcnmr7979iwi0m750f8vzbfccsrp7k"; 10 + sha256 = "0a8crk29rmnw1kcgi72crb7syacdk03lkl05yand5cxs0l65jwdl"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkgconfig ];
+3 -3
pkgs/top-level/perl-packages.nix
··· 17407 17407 17408 17408 SysVirt = buildPerlModule rec { 17409 17409 pname = "Sys-Virt"; 17410 - version = "6.1.0"; 17410 + version = "6.2.0"; 17411 17411 src = assert version == pkgs.libvirt.version; pkgs.fetchgit { 17412 17412 url = git://libvirt.org/libvirt-perl.git; 17413 - rev = "v${version}"; 17414 - sha256 = "00w4fmki7ff7i9bi39w2w15mvv38b5ifwk3zib90ny536r3n63sb"; 17413 + rev = "799b243230163ff4f8dde6293da8a0e31e7c900e"; 17414 + sha256 = "1k38d1ycx3ibgfzcr1iym7cvpwvygh6a2i5548m4qjb47vfi12rz"; 17415 17415 }; 17416 17416 nativeBuildInputs = [ pkgs.pkgconfig ]; 17417 17417 buildInputs = [ pkgs.libvirt CPANChanges TestPod TestPodCoverage XMLXPath ];