2015-10-13 06:09:32 -07:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, boost, libevent, double_conversion, glog
|
2014-12-03 14:12:32 -08:00
|
|
|
, google-gflags, python, libiberty, openssl }:
|
2014-11-07 16:48:54 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-10-13 06:09:32 -07:00
|
|
|
version = "0.57.0";
|
2015-02-02 09:31:30 -08:00
|
|
|
name = "folly-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "folly";
|
2015-10-13 06:09:32 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9";
|
2014-11-07 16:48:54 -08:00
|
|
|
};
|
|
|
|
|
2015-10-13 06:09:32 -07:00
|
|
|
patches = [
|
|
|
|
# Fix compatibility with Boost 1.59
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/facebook/folly/commit/29193aca605bb93d82a3c92acd95bb342115f3a4.patch";
|
|
|
|
sha256 = "1ixpgq1wjr3i7madx4faw72n17ilc9cr435k5w1x95jr954m9j7b";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2015-09-03 14:31:10 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook python ];
|
|
|
|
buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
|
2014-11-07 16:48:54 -08:00
|
|
|
|
2015-10-13 06:09:32 -07:00
|
|
|
postPatch = "cd folly";
|
2014-11-07 16:48:54 -08:00
|
|
|
preBuild = ''
|
|
|
|
patchShebangs build
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-28 19:02:02 -07:00
|
|
|
description = "An open-source C++ library developed and used at Facebook";
|
|
|
|
homepage = https://github.com/facebook/folly;
|
2014-11-07 16:48:54 -08:00
|
|
|
license = licenses.mit;
|
2014-12-11 00:49:52 -08:00
|
|
|
# 32bit is not supported: https://github.com/facebook/folly/issues/103
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2015-05-14 10:09:10 -07:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-07 16:48:54 -08:00
|
|
|
};
|
|
|
|
}
|