about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/folly
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/folly')
-rw-r--r--nixpkgs/pkgs/development/libraries/folly/default.nix66
1 files changed, 66 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/folly/default.nix b/nixpkgs/pkgs/development/libraries/folly/default.nix
new file mode 100644
index 000000000000..f6dfa9695281
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/folly/default.nix
@@ -0,0 +1,66 @@
+{ lib, stdenv
+, fetchFromGitHub
+, boost
+, cmake
+, double-conversion
+, fetchpatch
+, fmt_8
+, gflags
+, glog
+, libevent
+, libiberty
+, libunwind
+, lz4
+, openssl
+, pkg-config
+, xz
+, zlib
+, zstd
+, follyMobile ? false
+}:
+
+stdenv.mkDerivation rec {
+  pname = "folly";
+  version = "2022.02.14.00";
+
+  src = fetchFromGitHub {
+    owner = "facebook";
+    repo = "folly";
+    rev = "v${version}";
+    sha256 = "sha256-tJuHzEi4nrj5jb6tmJeG21ggl4F+wvQyssEPNp/t6Ww=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    pkg-config
+  ];
+
+  # See CMake/folly-deps.cmake in the Folly source tree.
+  buildInputs = [
+    boost
+    double-conversion
+    glog
+    gflags
+    libevent
+    libiberty
+    openssl
+    lz4
+    xz
+    zlib
+    libunwind
+    fmt_8
+    zstd
+  ];
+
+  NIX_CFLAGS_COMPILE = [ "-DFOLLY_MOBILE=${if follyMobile then "1" else "0"}" ];
+  cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
+
+  meta = with lib; {
+    description = "An open-source C++ library developed and used at Facebook";
+    homepage = "https://github.com/facebook/folly";
+    license = licenses.asl20;
+    # 32bit is not supported: https://github.com/facebook/folly/issues/103
+    platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
+    maintainers = with maintainers; [ abbradar pierreis ];
+  };
+}