nixpkgs/pkgs/development/libraries/folly/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2016-08-13 00:08:10 +00:00
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig, boost, libevent
, 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}";
2017-07-27 12:52:39 +00:00
version = "2017.07.24.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}";
2017-07-27 12:52:39 +00:00
sha256 = "1cmqrm9yjxrw4xr1kcgzl0s7vcvp125wcgb0cz7whssgj11mf169";
2014-11-08 00:48:54 +00:00
};
2017-07-27 12:52:39 +00:00
patches = [
# Fix compilation
(fetchpatch {
url = "https://github.com/facebook/folly/commit/9fc87c83d93f092859823ec32289ed1b6abeb683.patch";
sha256 = "0ix0grqlzm16hwa4rjbajjck8kr9lksh6c3gn7p3ihbbchsmlhvl";
})
];
2016-08-13 00:08:10 +00:00
nativeBuildInputs = [ autoreconfHook python pkgconfig ];
2015-09-03 21:31:10 +00:00
buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
2014-11-08 00:48:54 +00:00
2015-10-13 13:09:32 +00:00
postPatch = "cd folly";
2014-11-08 00:48:54 +00:00
preBuild = ''
patchShebangs build
'';
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
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";
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" ];
maintainers = with maintainers; [ abbradar ];
2014-11-08 00:48:54 +00:00
};
}