libdnf: init at 0.55.2
This commit is contained in:
parent
0312504c2e
commit
dd5ffa7b94
35
pkgs/tools/package-management/libdnf/darwin.patch
Normal file
35
pkgs/tools/package-management/libdnf/darwin.patch
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
--- src/libdnf/hy-iutil.cpp 2020-12-02 07:53:42.000000000 -0800
|
||||||
|
+++ src/libdnf/hy-iutil.cpp 2020-12-21 14:24:14.000000000 -0800
|
||||||
|
@@ -22,7 +22,7 @@
|
||||||
|
#include <errno.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
-#include <linux/limits.h>
|
||||||
|
+#include <limits.h>
|
||||||
|
#include <pwd.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
--- src/libdnf/hy-util.cpp 2020-12-02 07:53:42.000000000 -0800
|
||||||
|
+++ src/libdnf/hy-util.cpp 2020-12-21 14:23:21.000000000 -0800
|
||||||
|
@@ -24,7 +24,20 @@
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <sys/utsname.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
-#include <sys/auxv.h>
|
||||||
|
+
|
||||||
|
+// Darwin compatibility hacks
|
||||||
|
+typedef int auxv_t;
|
||||||
|
+#ifndef AT_HWCAP2
|
||||||
|
+#define AT_HWCAP2 26
|
||||||
|
+#endif
|
||||||
|
+#ifndef AT_HWCAP
|
||||||
|
+#define AT_HWCAP 16
|
||||||
|
+#endif
|
||||||
|
+static unsigned long getauxval(unsigned long type)
|
||||||
|
+{
|
||||||
|
+ unsigned long ret = 0;
|
||||||
|
+ return ret;
|
||||||
|
+}
|
||||||
|
|
||||||
|
// hawkey
|
||||||
|
#include "dnf-types.h"
|
66
pkgs/tools/package-management/libdnf/default.nix
Normal file
66
pkgs/tools/package-management/libdnf/default.nix
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
{ gcc9Stdenv, stdenv, fetchFromGitHub, cmake, gettext, pkg-config, gpgme, libsolv, openssl, check
|
||||||
|
, pcre, json_c, libmodulemd, libsmartcols, sqlite, librepo, libyaml, rpm }:
|
||||||
|
|
||||||
|
gcc9Stdenv.mkDerivation rec {
|
||||||
|
pname = "libdnf";
|
||||||
|
version = "0.55.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rpm-software-management";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0hiydwfa90nsrqk5ffa6ks1g73wnsgjgq7z7gwq9jj76a7gpfbfq";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin.patch ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
gettext
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
check
|
||||||
|
gpgme
|
||||||
|
openssl
|
||||||
|
json_c
|
||||||
|
libsmartcols
|
||||||
|
libyaml
|
||||||
|
libmodulemd
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
sqlite
|
||||||
|
libsolv
|
||||||
|
librepo
|
||||||
|
rpm
|
||||||
|
];
|
||||||
|
|
||||||
|
# See https://github.com/NixOS/nixpkgs/issues/107430
|
||||||
|
prePatch = ''
|
||||||
|
cp ${libsolv}/share/cmake/Modules/FindLibSolv.cmake cmake/modules/
|
||||||
|
'';
|
||||||
|
|
||||||
|
# See https://github.com/NixOS/nixpkgs/issues/107428
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace CMakeLists.txt \
|
||||||
|
--replace "enable_testing()" "" \
|
||||||
|
--replace "add_subdirectory(tests)" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DWITH_GTKDOC=OFF"
|
||||||
|
"-DWITH_HTML=OFF"
|
||||||
|
"-DWITH_BINDINGS=OFF"
|
||||||
|
"-DWITH_ZCHUNK=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Package management library.";
|
||||||
|
homepage = "https://github.com/rpm-software-management/libdnf";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
maintainers = with maintainers; [ rb2k ];
|
||||||
|
};
|
||||||
|
}
|
@ -13977,6 +13977,8 @@ in
|
|||||||
|
|
||||||
libdnet = callPackage ../development/libraries/libdnet { };
|
libdnet = callPackage ../development/libraries/libdnet { };
|
||||||
|
|
||||||
|
libdnf = callPackage ../tools/package-management/libdnf { };
|
||||||
|
|
||||||
libdrm = callPackage ../development/libraries/libdrm { };
|
libdrm = callPackage ../development/libraries/libdrm { };
|
||||||
|
|
||||||
libdv = callPackage ../development/libraries/libdv { };
|
libdv = callPackage ../development/libraries/libdv { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user