mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
61 lines
1.9 KiB
Nix
61 lines
1.9 KiB
Nix
{ stdenv, fetchurl, fetchpatch, boost, zlib, libevent, openssl, python, cmake, pkg-config
|
|
, bison, flex, twisted
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "thrift";
|
|
version = "0.13.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://archive.apache.org/dist/thrift/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0yai9c3bdsrkkjshgim7zk0i7malwfprg00l9774dbrkh2w4ilvs";
|
|
};
|
|
|
|
patches = [
|
|
# Fix a failing test on darwin
|
|
# https://issues.apache.org/jira/browse/THRIFT-4976
|
|
(fetchpatch {
|
|
url = "https://github.com/apache/thrift/commit/6701dbb8e89f6550c7843e9b75b118998df471c3.diff";
|
|
sha256 = "14rqma2b2zv3zxkkl5iv9kvyp3zihvad6fdc2gcdqv37nqnswx9d";
|
|
})
|
|
];
|
|
|
|
# Workaround to make the python wrapper not drop this package:
|
|
# pythonFull.buildEnv.override { extraLibs = [ thrift ]; }
|
|
pythonPath = [];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config bison flex ];
|
|
buildInputs = [ boost zlib libevent openssl ]
|
|
++ stdenv.lib.optionals (!static) [ python twisted ];
|
|
|
|
preConfigure = "export PY_PREFIX=$out";
|
|
|
|
cmakeFlags = [
|
|
# 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"}"
|
|
] ++ stdenv.lib.optionals static [
|
|
"-DWITH_STATIC_LIB:BOOL=ON"
|
|
"-DOPENSSL_USE_STATIC_LIBS=ON"
|
|
];
|
|
|
|
doCheck = !static;
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
${stdenv.lib.optionalString stdenv.isDarwin "DY"}LD_LIBRARY_PATH=$PWD/lib ctest -E PythonTestSSLSocket
|
|
|
|
runHook postCheck
|
|
'';
|
|
enableParallelChecking = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library for scalable cross-language services";
|
|
homepage = "http://thrift.apache.org/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|