dnf5: 5.1.7 -> 5.1.8

Adding `libyaml`, as the following output was observed:

dnf5> -- Checking for module 'modulemd-2.0>=2.11.2'
dnf5> --   Found modulemd-2.0, version 2.15.0
dnf5> Package yaml-0.1 was not found in the pkg-config search path.
dnf5> Perhaps you should add the directory containing `yaml-0.1.pc'
dnf5> to the PKG_CONFIG_PATH environment variable
dnf5> Package 'yaml-0.1', required by 'modulemd-2.0', not found
This commit is contained in:
Paul Meyer 2023-11-23 20:12:05 +01:00
parent 232c34b9cb
commit 0890159e5c

View file

@ -14,6 +14,7 @@
, libsmartcols
, libsolv
, libxml2
, libyaml
, pcre2
, rpm
, sdbus-cpp
@ -25,13 +26,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "dnf5";
version = "5.1.7";
version = "5.1.8";
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = "dnf5";
rev = finalAttrs.version;
hash = "sha256-SXgl4YFWl1A3N2/IkDftvBl6Rwhnymxe8AqqaekGHTc=";
hash = "sha256-4ht2KraWKL774QPfZz1OgAuFtPVsMis9WiDS+QFP8JY=";
};
nativeBuildInputs = [ cmake createrepo_c gettext help2man pkg-config ];
@ -44,6 +45,7 @@ stdenv.mkDerivation (finalAttrs: {
libsmartcols
libsolv
libxml2
libyaml
pcre2.dev
rpm
sdbus-cpp