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

36 lines
1.1 KiB
Nix
Raw Normal View History

2016-08-13 02:08:10 +02:00
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig, boost, libevent
, double_conversion, glog, google-gflags, python, libiberty, openssl }:
2014-11-08 01:48:54 +01:00
stdenv.mkDerivation rec {
2015-02-02 18:31:30 +01:00
name = "folly-${version}";
2016-11-23 15:57:27 +01:00
version = "2016.11.21.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}";
2016-11-23 15:57:27 +01:00
sha256 = "1f7j73avj00mmzz8wyh9rl1k9i0cvk77d0nf9c80vzr2zfk9f31x";
2014-11-08 01:48:54 +01:00
};
2016-08-13 02:08:10 +02:00
nativeBuildInputs = [ autoreconfHook python pkgconfig ];
2015-09-03 23:31:10 +02:00
buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
2014-11-08 01:48:54 +01:00
2015-10-13 15:09:32 +02:00
postPatch = "cd folly";
2014-11-08 01:48:54 +01:00
preBuild = ''
patchShebangs build
'';
configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ];
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";
2016-11-23 15:49:18 +01:00
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
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ abbradar ];
2014-11-08 01:48:54 +01:00
};
}