2018-11-02 20:03:35 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, libevent, double-conversion, glog
|
|
|
|
, google-gflags, libiberty, openssl }:
|
2014-11-08 00:48:54 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-02 17:31:30 +00:00
|
|
|
name = "folly-${version}";
|
2018-11-02 20:03:35 +00:00
|
|
|
version = "2018.10.29.00";
|
2015-02-02 17:31:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "folly";
|
2016-08-13 00:08:10 +00:00
|
|
|
rev = "v${version}";
|
2018-11-02 20:03:35 +00:00
|
|
|
sha256 = "0bbp4w8wbawh3ilgkl7rwvbqkdczpvfn92f9lcvxj8sili0nldab";
|
2014-11-08 00:48:54 +00:00
|
|
|
};
|
|
|
|
|
2018-11-02 20:03:35 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-11-08 00:48:54 +00:00
|
|
|
|
2018-11-02 20:03:35 +00:00
|
|
|
# See CMake/folly-deps.cmake in the Folly source tree.
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
double-conversion
|
|
|
|
glog
|
|
|
|
google-gflags
|
|
|
|
libevent
|
|
|
|
libiberty
|
|
|
|
openssl
|
|
|
|
];
|
2014-11-08 00:48:54 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-29 02:02:02 +00:00
|
|
|
description = "An open-source C++ library developed and used at Facebook";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/facebook/folly;
|
2016-08-24 23:30:28 +00:00
|
|
|
license = licenses.asl20;
|
2014-12-11 08:49:52 +00:00
|
|
|
# 32bit is not supported: https://github.com/facebook/folly/issues/103
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2015-05-14 17:09:10 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-08 00:48:54 +00:00
|
|
|
};
|
|
|
|
}
|