about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/fb303
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/fb303')
-rw-r--r--nixpkgs/pkgs/development/libraries/fb303/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/fb303/default.nix b/nixpkgs/pkgs/development/libraries/fb303/default.nix
new file mode 100644
index 000000000000..d1de187ec2c4
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/fb303/default.nix
@@ -0,0 +1,55 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, cmake
+, fbthrift
+, fizz
+, folly
+, glog
+, libsodium
+, mvfst
+, python3
+, wangle
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+  pname = "fb303";
+  version = "2024.01.22.00";
+
+  src = fetchFromGitHub {
+    owner = "facebook";
+    repo = "fb303";
+    rev = "v${version}";
+    sha256 = "sha256-EQpe0REGWUpYg+llsCo4x6vJ7UPdWXk3uPM3b8b9Uf0=";
+  };
+
+  nativeBuildInputs = [ cmake ];
+  cmakeFlags = [
+    "-DPYTHON_EXTENSIONS=OFF"
+  ] ++ lib.optionals stdenv.isDarwin [
+    "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
+  ];
+
+  buildInputs = [
+    fbthrift
+    fizz
+    folly
+    folly.boost
+    folly.fmt
+    glog
+    libsodium
+    mvfst
+    python3
+    wangle
+    zlib
+  ];
+
+  meta = with lib; {
+    description = "a base Thrift service and a common set of functionality for querying stats, options, and other information from a service";
+    homepage = "https://github.com/facebook/fb303";
+    license = licenses.asl20;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ kylesferrazza ];
+  };
+}