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

39 lines
975 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, boost, libevent, double-conversion, glog
, gflags, libiberty, openssl }:
2014-11-08 01:48:54 +01:00
stdenv.mkDerivation rec {
pname = "folly";
2019-11-26 02:19:14 +01:00
version = "2019.11.11.00";
2015-02-02 18:31:30 +01:00
src = fetchFromGitHub {
owner = "facebook";
repo = "folly";
2016-08-13 02:08:10 +02:00
rev = "v${version}";
2019-11-26 02:19:14 +01:00
sha256 = "1sgv7sdalbs7zhz3zcc95gn2h8j2xjf7hkw2c618zc3pdn6aa58w";
2014-11-08 01:48:54 +01:00
};
nativeBuildInputs = [ cmake ];
2014-11-08 01:48:54 +01:00
# See CMake/folly-deps.cmake in the Folly source tree.
buildInputs = [
boost
double-conversion
glog
gflags
libevent
libiberty
openssl
];
2014-11-08 01:48:54 +01:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
2015-03-29 04:02:02 +02:00
description = "An open-source C++ library developed and used at Facebook";
homepage = "https://github.com/facebook/folly";
2016-08-25 01:30:28 +02:00
license = licenses.asl20;
2014-12-11 09:49:52 +01:00
# 32bit is not supported: https://github.com/facebook/folly/issues/103
2019-05-31 22:18:05 +02:00
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ abbradar pierreis ];
2014-11-08 01:48:54 +01:00
};
}