1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #152283 from lukegb/leveldb-ceph

leveldb: reenable RTTI in build
This commit is contained in:
Luke Granger-Brown 2021-12-26 17:52:44 -08:00 committed by GitHub
commit 2a3b73ffa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, fixDarwinDylibNames, snappy, cmake
{ lib, stdenv, fetchFromGitHub, fetchpatch, fixDarwinDylibNames, snappy, cmake
, static ? stdenv.hostPlatform.isStatic }:
stdenv.mkDerivation rec {
@ -12,6 +12,17 @@ stdenv.mkDerivation rec {
sha256 = "sha256-RL+dfSFZZzWvUobSqiPbuC4nDiGzjIIukbVJZRacHbI=";
};
patches = [
# Re-enable RTTI. Needed for e.g. Ceph to compile properly.
# See https://github.com/NixOS/nixpkgs/issues/147801,
# https://github.com/google/leveldb/issues/731,
# https://lists.ceph.io/hyperkitty/list/dev@ceph.io/thread/K4OSAA4AJS2V7FQI6GNCKCK3IRQDBQRS/.
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/leveldb/raw/e8178670c664e952fdd00f1fc6e3eb28b2c5b6a8/f/0006-revert-no-rtti.patch";
sha256 = "sha256-d2YAV8O+1VKu3WwgNsWw6Cxg5sUUR+xOlJtA7pTcigQ=";
})
];
outputs = [ "out" "dev" ];
buildInputs = [ snappy ];