2018-11-02 13:03:35 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, libevent, double-conversion, glog
|
2019-07-25 02:04:55 -07:00
|
|
|
, gflags, libiberty, openssl }:
|
2014-11-07 16:48:54 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "folly";
|
2019-09-26 08:11:48 -07:00
|
|
|
version = "2019.09.16.00";
|
2015-02-02 09:31:30 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "folly";
|
2016-08-12 17:08:10 -07:00
|
|
|
rev = "v${version}";
|
2019-09-26 08:11:48 -07:00
|
|
|
sha256 = "14vdc1rh6z2yhwncpmgyq9c8c0rddhd9l1mnmj9pjhl5hfj45kf6";
|
2014-11-07 16:48:54 -08:00
|
|
|
};
|
|
|
|
|
2018-11-02 13:03:35 -07:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-11-07 16:48:54 -08:00
|
|
|
|
2018-11-02 13:03:35 -07:00
|
|
|
# See CMake/folly-deps.cmake in the Folly source tree.
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
double-conversion
|
|
|
|
glog
|
2019-07-25 02:04:55 -07:00
|
|
|
gflags
|
2018-11-02 13:03:35 -07:00
|
|
|
libevent
|
|
|
|
libiberty
|
|
|
|
openssl
|
|
|
|
];
|
2014-11-07 16:48:54 -08:00
|
|
|
|
|
|
|
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";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://github.com/facebook/folly;
|
2016-08-24 16:30:28 -07:00
|
|
|
license = licenses.asl20;
|
2014-12-11 00:49:52 -08:00
|
|
|
# 32bit is not supported: https://github.com/facebook/folly/issues/103
|
2019-05-31 13:18:05 -07:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
|
|
maintainers = with maintainers; [ abbradar pierreis ];
|
2014-11-07 16:48:54 -08:00
|
|
|
};
|
|
|
|
}
|