fbthrift: init at 2023.01.30.00

Co-authored-by: Andrew Hamon <and.ham95@gmail.com>
This commit is contained in:
Kyle Sferrazza
2023-01-19 00:15:46 -08:00
committed by Florian Brandes
parent fc45d5131c
commit 3af0ddedfe
2 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
{ stdenv
, fetchFromGitHub
, cmake
, bison
, boost
, libevent
, double-conversion
, libsodium
, fizz
, flex
, fmt_8
, folly
, glog
, gflags
, libiberty
, openssl
, lib
, wangle
, zlib
, zstd
}:
stdenv.mkDerivation rec {
pname = "fbthrift";
version = "2023.01.30.00";
src = fetchFromGitHub {
owner = "facebook";
repo = "fbthrift";
rev = "v${version}";
sha256 = "sha256-poXe2EF4ZcqOZza1WUSAO2cA655jiWpqdo3YYrzAk7I=";
};
nativeBuildInputs = [
cmake
bison
flex
];
cmakeFlags = lib.optionals stdenv.isDarwin [
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
];
buildInputs = [
boost
double-conversion
fizz
fmt_8
folly
glog
gflags
libevent
libiberty
openssl
wangle
zlib
zstd
libsodium
];
meta = with lib; {
description = "Facebook's branch of Apache Thrift";
homepage = "https://github.com/facebook/fbthrift";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ pierreis kylesferrazza ];
};
}

View File

@@ -19532,6 +19532,8 @@ with pkgs;
autoreconfHook = buildPackages.autoreconfHook269;
};
fbthrift = callPackage ../development/libraries/fbthrift { };
fcgi = callPackage ../development/libraries/fcgi { };
fcl = callPackage ../development/libraries/fcl { };