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

36 lines
987 B
Nix
Raw Normal View History

2014-11-08 00:48:54 +00:00
{ stdenv, fetchgit, 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 {
2014-12-03 22:12:32 +00:00
name = "folly-17";
2014-11-08 00:48:54 +00:00
src = fetchgit {
url = "https://github.com/facebook/folly";
2014-12-03 22:12:32 +00:00
rev = "2c2d5777cd2551397a920007589fd3adba6cb7ab";
sha256 = "13mfnv04ckkr2syigaaxrbaxmfiwqvn0a7fjxvdi6dii3fx81rsx";
2014-11-08 00:48:54 +00:00
};
2014-12-03 22:12:32 +00:00
patches = [ ./105.patch ];
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; {
description = "A YAML parser and emitter for C++";
homepage = https://code.google.com/p/yaml-cpp/;
license = licenses.mit;
platforms = platforms.unix;
maintainers = maintainers.abbradar;
};
}