Unverified Commit 667441ac authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

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

libdnf: 0.70.0 -> 0.70.1
parents cb72133a fbc4f006
Loading
Loading
Loading
Loading
+24 −6
Original line number Diff line number Diff line
{ 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 ];