2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, boost, libevent
|
2017-11-22 23:34:18 +00:00
|
|
|
, double-conversion, glog, google-gflags, python, 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-08-17 10:56:37 +01:00
|
|
|
version = "2018.08.13.00";
|
2015-02-02 17:31:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "folly";
|
2016-08-13 01:08:10 +01:00
|
|
|
rev = "v${version}";
|
2018-08-17 10:56:37 +01:00
|
|
|
sha256 = "1lhq3l7rirhi4vwgiym0r3rff1i69c7bdpi1hm8r4axs2dfjvxdr";
|
2014-11-08 00:48:54 +00:00
|
|
|
};
|
|
|
|
|
2016-08-13 01:08:10 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook python pkgconfig ];
|
2017-11-22 23:34:18 +00:00
|
|
|
buildInputs = [ libiberty boost libevent double-conversion glog google-gflags openssl ];
|
2014-11-08 00:48:54 +00:00
|
|
|
|
2015-10-13 14:09:32 +01:00
|
|
|
postPatch = "cd folly";
|
2014-11-08 00:48:54 +00:00
|
|
|
preBuild = ''
|
|
|
|
patchShebangs build
|
|
|
|
'';
|
|
|
|
|
2016-04-27 22:41:28 +01:00
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
2014-11-08 00:48:54 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-29 03:02:02 +01:00
|
|
|
description = "An open-source C++ library developed and used at Facebook";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/facebook/folly;
|
2016-08-25 00:30:28 +01: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 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-08 00:48:54 +00:00
|
|
|
};
|
|
|
|
}
|