Merge pull request #232948 from r-ryantm/auto-update/libdnf

libdnf: 0.70.0 -> 0.70.1
This commit is contained in:
Nick Cao 2023-05-20 05:07:36 -06:00 committed by GitHub
commit 667441acd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,32 @@
{ lib, stdenv, fetchFromGitHub, cmake, gettext, pkg-config, gpgme, libsolv, openssl, check
, json_c, libmodulemd, libsmartcols, sqlite, librepo, libyaml, rpm, zchunk }:
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gettext
, pkg-config
, gpgme
, libsolv
, openssl
, check
, json_c
, libmodulemd
, libsmartcols
, sqlite
, librepo
, libyaml
, rpm
, zchunk
}:
stdenv.mkDerivation rec {
pname = "libdnf";
version = "0.70.0";
version = "0.70.1";
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = pname;
rev = version;
sha256 = "sha256-tuHrkL3tL+sCLPxNElVgnb4zQ6OTu65X9pb/cX6vD/w=";
rev = "refs/tags/${version}";
hash = "sha256-DQXyMzkYxqMxSIWEyBKb5vQfelfxLMy4QeHQPWJWx/o=";
};
nativeBuildInputs = [
@ -59,8 +76,9 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
description = "Package management library.";
description = "Package management library";
homepage = "https://github.com/rpm-software-management/libdnf";
changelog = "https://github.com/rpm-software-management/libdnf/releases/tag/${version}";
license = licenses.gpl2Plus;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ rb2k ];