1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/folly/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

2015-02-02 17:31:30 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, boost, libevent, double_conversion, glog
2014-12-03 22:12:32 +00:00
, google-gflags, python, libiberty, openssl }:
2014-11-08 00:48:54 +00:00
stdenv.mkDerivation rec {
2015-03-29 03:02:02 +01:00
version = "0.32.0";
2015-02-02 17:31:30 +00:00
name = "folly-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "folly";
rev = "v${version}";
2015-03-29 03:02:02 +01:00
sha256 = "0yviih6b220bv6d1rg4lx1hqprqapnzfv4rv64cwjxbmz49ckmzh";
2014-11-08 00:48:54 +00:00
};
2014-12-03 22:12:32 +00:00
buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags openssl ];
2014-11-08 00:48:54 +00:00
nativeBuildInputs = [ autoreconfHook python boost ];
postUnpack = "sourceRoot=\${sourceRoot}/folly";
preBuild = ''
patchShebangs build
'';
configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ];
enableParallelBuilding = true;
meta = with stdenv.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;
2014-11-08 00:48:54 +00:00
license = licenses.mit;
2014-12-11 08:49:52 +00:00
# 32bit is not supported: https://github.com/facebook/folly/issues/103
platforms = [ "x86_64-linux" ];
2014-11-08 00:48:54 +00:00
maintainers = maintainers.abbradar;
};
}