folly: 12 -> 17, fix build

This commit is contained in:
Domen Kožar
2014-12-03 23:12:32 +01:00
parent b7a504ea6b
commit f058618019
2 changed files with 29 additions and 5 deletions
+7 -5
View File
@@ -1,16 +1,18 @@
{ stdenv, fetchgit, autoreconfHook, boost, libevent, double_conversion, glog
, google-gflags, python, libiberty }:
, google-gflags, python, libiberty, openssl }:
stdenv.mkDerivation rec {
name = "folly-12";
name = "folly-17";
src = fetchgit {
url = "https://github.com/facebook/folly";
rev = "8d3b079a75fe1a8cf5811f290642b4f494f13822";
sha256 = "005fa202aca29c3a6757ae3bb050a6e4e5e773a1439f5803257a5f9e3cc9bdb6";
rev = "2c2d5777cd2551397a920007589fd3adba6cb7ab";
sha256 = "13mfnv04ckkr2syigaaxrbaxmfiwqvn0a7fjxvdi6dii3fx81rsx";
};
buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags ];
patches = [ ./105.patch ];
buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags openssl ];
nativeBuildInputs = [ autoreconfHook python boost ];