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

36 lines
1.1 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}";
version = "2018.03.26.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}";
sha256 = "137d9b9k2m02r8f2w31qj3gc18hpm5g51bcl60g6vzdqzwzizzyr";
2014-11-08 00:48:54 +00:00
};
2016-08-13 00:08:10 +00:00
nativeBuildInputs = [ autoreconfHook python pkgconfig ];
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
};
}