3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/folly/default.nix

67 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, boost
2022-02-10 03:25:19 +00:00
, cmake
, double-conversion
2022-02-10 03:25:19 +00:00
, fetchpatch
, fmt_8
, gflags
2022-02-10 03:25:19 +00:00
, glog
, libevent
, libiberty
2022-02-10 03:25:19 +00:00
, libunwind
, lz4
, openssl
, pkg-config
2022-02-10 03:25:19 +00:00
, xz
, zlib
, zstd
, follyMobile ? false
}:
2014-11-08 00:48:54 +00:00
2022-02-10 03:25:19 +00:00
stdenv.mkDerivation rec {
pname = "folly";
2022-02-10 03:25:19 +00:00
version = "2022.02.07.00";
2015-02-02 17:31:30 +00:00
src = fetchFromGitHub {
owner = "facebook";
repo = "folly";
2016-08-13 01:08:10 +01:00
rev = "v${version}";
2022-02-10 03:25:19 +00:00
sha256 = "sha256-C/PQBXhOELNxQFfQhgQeU+QmsdtFeBESyWerC+QZBEI=";
2014-11-08 00:48:54 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
2014-11-08 00:48:54 +00:00
# See CMake/folly-deps.cmake in the Folly source tree.
buildInputs = [
boost
double-conversion
glog
gflags
libevent
libiberty
openssl
lz4
2021-03-14 18:12:53 +00:00
xz
zlib
libunwind
2022-02-10 03:25:19 +00:00
fmt_8
zstd
];
2014-11-08 00:48:54 +00:00
2022-02-10 03:25:19 +00:00
NIX_CFLAGS_COMPILE = [ "-DFOLLY_MOBILE=${if follyMobile then "1" else "0"}" ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
2014-11-08 00:48:54 +00:00
meta = with lib; {
2015-03-29 03:02:02 +01:00
description = "An open-source C++ library developed and used at Facebook";
homepage = "https://github.com/facebook/folly";
2016-08-25 00:30:28 +01:00
license = licenses.asl20;
2014-12-11 08:49:52 +00:00
# 32bit is not supported: https://github.com/facebook/folly/issues/103
2022-02-10 03:25:19 +00:00
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
2019-05-31 21:18:05 +01:00
maintainers = with maintainers; [ abbradar pierreis ];
2014-11-08 00:48:54 +00:00
};
2022-02-10 03:25:19 +00:00
}