2015-10-13 15:09:32 +02:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, boost, libevent, double_conversion, glog
|
2014-12-03 23:12:32 +01:00
|
|
|
, google-gflags, python, libiberty, openssl }:
|
2014-11-08 01:48:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-02 18:31:30 +01:00
|
|
|
name = "folly-${version}";
|
2016-04-30 01:59:11 +02:00
|
|
|
version = "2016-04-29";
|
2015-02-02 18:31:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "folly";
|
2016-04-30 01:59:11 +02:00
|
|
|
rev = "b31eb722e444ab0293a73fe9de3f94e657ca6de9";
|
|
|
|
sha256 = "0s95y0wnz4xbrkzbiksnb0n0d0qrkcsbssznng57kwlq8jlfka24";
|
2014-11-08 01:48:54 +01:00
|
|
|
};
|
|
|
|
|
2015-09-03 23:31:10 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook python ];
|
|
|
|
buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
|
2014-11-08 01:48:54 +01:00
|
|
|
|
2015-10-13 15:09:32 +02:00
|
|
|
postPatch = "cd folly";
|
2014-11-08 01:48:54 +01:00
|
|
|
preBuild = ''
|
|
|
|
patchShebangs build
|
|
|
|
'';
|
|
|
|
|
2016-04-27 23:41:28 +02:00
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
|
2014-11-08 01:48:54 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-29 04:02:02 +02:00
|
|
|
description = "An open-source C++ library developed and used at Facebook";
|
|
|
|
homepage = https://github.com/facebook/folly;
|
2014-11-08 01:48:54 +01:00
|
|
|
license = licenses.mit;
|
2014-12-11 09:49:52 +01:00
|
|
|
# 32bit is not supported: https://github.com/facebook/folly/issues/103
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2015-05-14 19:09:10 +02:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-08 01:48:54 +01:00
|
|
|
};
|
|
|
|
}
|