libvirt: 9.1.0 -> 9.2.0

This commit is contained in:
R. Ryantm 2023-04-10 01:57:03 +00:00
parent 619ca2064f
commit 0ad1f4aea3
2 changed files with 4 additions and 4 deletions

View file

@ -114,13 +114,13 @@ stdenv.mkDerivation rec {
# NOTE: You must also bump:
# <nixpkgs/pkgs/development/python-modules/libvirt/default.nix>
# SysVirt in <nixpkgs/pkgs/top-level/perl-packages.nix>
version = "9.1.0";
version = "9.2.0";
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-V39p0kg+zGdoIY9mJjtMLk2xzlTjHG0SPR2GjvHK9FI=";
sha256 = "sha256-uASIfQVbY/5I/PELEB6EGzzHfcgY4jIolbyH05TgiLA=";
fetchSubmodules = true;
};

View file

@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "libvirt";
version = "9.1.0";
version = "9.2.0";
src = fetchFromGitLab {
owner = "libvirt";
repo = "libvirt-python";
rev = "v${version}";
hash = "sha256-kdWmgmkvI7yaqyFytPnHN6OtF+gsRe58q6AlXFycfQ8=";
hash = "sha256-htJPNFiY0WuQlgfFkLh3RUmnx2X4aQ0+iUQgZ1+HDp0=";
};
nativeBuildInputs = [ pkg-config ];