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

37 lines
1.0 KiB
Nix
Raw Normal View History

2015-02-02 20:31:30 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook, boost, libevent, double_conversion, glog
2014-12-04 01:12:32 +03:00
, google-gflags, python, libiberty, openssl }:
2014-11-08 03:48:54 +03:00
stdenv.mkDerivation rec {
2015-02-02 20:31:30 +03:00
version = "0.22.0";
name = "folly-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "folly";
rev = "v${version}";
sha256 = "12p7vbx73jmhf772nbqvd8imw4ihpi16cw6cwxq459r7qds4n0ca";
2014-11-08 03:48:54 +03:00
};
2014-12-04 01:12:32 +03:00
buildInputs = [ libiberty boost.lib libevent double_conversion glog google-gflags openssl ];
2014-11-08 03:48:54 +03: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;
2014-12-11 11:49:52 +03:00
# 32bit is not supported: https://github.com/facebook/folly/issues/103
platforms = [ "x86_64-linux" ];
2014-11-08 03:48:54 +03:00
maintainers = maintainers.abbradar;
};
}