2014-11-08 03:48:54 +03:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, boost, libevent, double_conversion, glog
|
2014-12-04 01:12:32 +03:00
|
|
|
, google-gflags, python, libiberty, openssl }:
|
2014-11-08 03:48:54 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-04 01:12:32 +03:00
|
|
|
name = "folly-17";
|
2014-11-08 03:48:54 +03:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/facebook/folly";
|
2014-12-04 01:12:32 +03:00
|
|
|
rev = "2c2d5777cd2551397a920007589fd3adba6cb7ab";
|
|
|
|
sha256 = "13mfnv04ckkr2syigaaxrbaxmfiwqvn0a7fjxvdi6dii3fx81rsx";
|
2014-11-08 03:48:54 +03:00
|
|
|
};
|
|
|
|
|
2014-12-04 01:12:32 +03:00
|
|
|
patches = [ ./105.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags openssl ];
|
2014-11-08 03:48:54 +03:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook python boost ];
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=\${sourceRoot}/folly";
|
|
|
|
preBuild = ''
|
|
|
|
patchShebangs build
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A YAML parser and emitter for C++";
|
|
|
|
homepage = https://code.google.com/p/yaml-cpp/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = maintainers.abbradar;
|
|
|
|
};
|
|
|
|
}
|