Skip to content

Commit

Permalink
rpm: fix build on Darwin (#346967)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilazy authored Nov 6, 2024
2 parents 8ca877b + 7187419 commit 0080e28
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions pkgs/tools/package-management/rpm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
, pkg-config
, autoreconfHook
, pandoc
, fetchpatch2
, fetchurl
, cpio
, zlib
Expand All @@ -23,6 +24,8 @@
, sqlite
, zstd
, libcap
, apple-sdk_13
, darwinMinVersionHook
}:

stdenv.mkDerivation rec {
Expand All @@ -34,13 +37,33 @@ stdenv.mkDerivation rec {
hash = "sha256-N/O0LAlmlB4q0/EP3jY5gkplkdBxl7qP0IacoHeeH1Y=";
};

patches = [
# Resolves `error: expected expression` on clang
# See: https://github.com/rpm-software-management/rpm/issues/2435.
(fetchpatch2 {
url = "https://github.com/rpm-software-management/rpm/commit/b960c0b43a080287a7c13533eeb2d9f288db1414.diff?full_index=1";
hash = "sha256-0f7YOL2xR07xgAEN32oRbOjPsAsVmKFVtTLXUOeFAa8=";
})
# Fix missing includes required to build on Darwin.
# See: https://github.com/rpm-software-management/rpm/pull/2571.
(fetchpatch2 {
url = "https://github.com/rpm-software-management/rpm/commit/f07875392a09228b1a25c1763a50bbbd0f6798c2.diff?full_index=1";
hash = "sha256-DLpzMApRCgI9zqheglFtqL8E1vq9X/aQa0HMnIAQgk8=";
})
(fetchpatch2 {
url = "https://github.com/rpm-software-management/rpm/commit/b2e67642fd8cb64d8cb1cca9e759396c1c10807d.diff?full_index=1";
hash = "sha256-q3fIBfiUJVmw6Vi2/Bo/zX6/cqTM7aFnskKfMVK3DlU=";
})
];

outputs = [ "out" "dev" "man" ];
separateDebugInfo = true;

nativeBuildInputs = [ autoreconfHook pkg-config pandoc ];
buildInputs = [ cpio zlib zstd bzip2 file libarchive libgcrypt nspr nss db xz python lua sqlite ]
++ lib.optional stdenv.cc.isClang llvmPackages.openmp
++ lib.optional stdenv.hostPlatform.isLinux libcap;
++ lib.optional stdenv.hostPlatform.isLinux libcap
++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_13 (darwinMinVersionHook "13.0") ];

# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements
propagatedBuildInputs = [ popt nss db bzip2 libarchive libbfd ]
Expand Down Expand Up @@ -92,9 +115,6 @@ stdenv.mkDerivation rec {
license = with licenses; [ gpl2Plus lgpl21Plus ];
description = "RPM Package Manager";
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.linux;
# Support for darwin was removed in https://github.com/NixOS/nixpkgs/pull/196350.
# This can be re-enables for apple_sdk.version >= 13.0.
badPlatforms = platforms.darwin;
platforms = platforms.linux ++ platforms.darwin;
};
}

0 comments on commit 0080e28

Please sign in to comment.