nixpkgs/pkgs/development/libraries/thrift/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

124 lines
3.0 KiB
Nix
Raw Normal View History

2022-06-08 09:00:52 +00:00
{ lib
, stdenv
, fetchurl
, fetchpatch
2022-06-08 09:00:52 +00:00
, boost
, zlib
, libevent
, openssl
, python3
, cmake
, pkg-config
, bison
, flex
, static ? stdenv.hostPlatform.isStatic
}:
2013-12-13 10:16:40 +00:00
stdenv.mkDerivation rec {
pname = "thrift";
2022-10-09 08:44:25 +00:00
version = "0.17.0";
2013-12-13 10:16:40 +00:00
src = fetchurl {
url = "https://archive.apache.org/dist/thrift/${version}/${pname}-${version}.tar.gz";
2022-10-09 08:44:25 +00:00
hash = "sha256-snLBeIuxZdmVIaJZmzG5f6aeWTHQmQFdka4QegsMxY8=";
2013-12-13 10:16:40 +00:00
};
2022-06-08 09:00:52 +00:00
# Workaround to make the Python wrapper not drop this package:
2014-10-19 17:54:33 +00:00
# pythonFull.buildEnv.override { extraLibs = [ thrift ]; }
pythonPath = [];
2022-06-08 09:00:52 +00:00
nativeBuildInputs = [
bison
cmake
flex
pkg-config
];
buildInputs = [
boost
libevent
openssl
zlib
] ++ lib.optionals (!static) [
(python3.withPackages (ps: [ps.twisted]))
];
postPatch = ''
# Python 3.10 related failures:
# SystemError: PY_SSIZE_T_CLEAN macro must be defined for '#' formats
# AttributeError: module 'collections' has no attribute 'Hashable'
substituteInPlace test/py/RunClientServer.py \
--replace "'FastbinaryTest.py'," "" \
--replace "'TestEof.py'," "" \
--replace "'TestFrozen.py'," ""
'';
2013-12-13 10:16:40 +00:00
2022-06-08 09:00:52 +00:00
preConfigure = ''
export PY_PREFIX=$out
'';
2021-10-21 09:55:04 +00:00
patches = [
# ToStringTest.cpp is failing from some reason due to locale issue, this
# doesn't disable all UnitTests as in Darwin.
./disable-failing-test.patch
(fetchpatch {
2022-09-30 12:35:16 +00:00
name = "setuptools-gte-62.1.0.patch"; # https://github.com/apache/thrift/pull/2635
url = "https://github.com/apache/thrift/commit/c41ad9d5119e9bdae1746167e77e224f390f2c42.diff";
hash = "sha256-FkErrg/6vXTomS4AsCsld7t+Iccc55ZiDaNjJ3W1km0=";
})
2021-10-21 09:55:04 +00:00
];
cmakeFlags = [
2021-04-03 23:16:14 +00:00
"-DBUILD_JAVASCRIPT:BOOL=OFF"
"-DBUILD_NODEJS:BOOL=OFF"
# FIXME: Fails to link in static mode with undefined reference to
# `boost::unit_test::unit_test_main(bool (*)(), int, char**)'
"-DBUILD_TESTING:BOOL=${if static then "OFF" else "ON"}"
] ++ lib.optionals static [
"-DWITH_STATIC_LIB:BOOL=ON"
"-DOPENSSL_USE_STATIC_LIBS=ON"
];
2021-04-03 23:16:14 +00:00
disabledTests = [
"PythonTestSSLSocket"
] ++ lib.optionals stdenv.isDarwin [
2022-06-08 09:00:52 +00:00
# Tests that hang up in the Darwin sandbox
2021-04-03 23:16:14 +00:00
"SecurityTest"
"SecurityFromBufferTest"
"python_test"
2022-06-08 09:00:52 +00:00
# Tests that fail in the Darwin sandbox when trying to use network
2021-04-03 23:16:14 +00:00
"UnitTests"
"TInterruptTest"
"TServerIntegrationTest"
"processor"
"TNonblockingServerTest"
"TNonblockingSSLServerTest"
"StressTest"
"StressTestConcurrent"
"StressTestNonBlocking"
"PythonThriftTNonblockingServer"
];
doCheck = !static;
2022-06-08 09:00:52 +00:00
checkPhase = ''
runHook preCheck
2020-01-10 20:19:01 +00:00
2021-04-03 23:16:14 +00:00
${lib.optionalString stdenv.isDarwin "DY"}LD_LIBRARY_PATH=$PWD/lib ctest -E "($(echo "$disabledTests" | tr " " "|"))"
2020-01-10 20:19:01 +00:00
runHook postCheck
'';
2022-06-08 09:00:52 +00:00
enableParallelChecking = false;
2013-12-13 10:16:40 +00:00
meta = with lib; {
2013-12-13 10:16:40 +00:00
description = "Library for scalable cross-language services";
homepage = "https://thrift.apache.org/";
license = licenses.asl20;
2014-10-09 16:57:18 +00:00
platforms = platforms.linux ++ platforms.darwin;
2022-06-08 09:00:52 +00:00
maintainers = with maintainers; [ bjornfor ];
2013-12-13 10:16:40 +00:00
};
}