16 stdenv.mkDerivation rec {
18 version = "2024.03.11.00";
20 src = fetchFromGitHub {
24 sha256 = "sha256-Jtztb8CTqvRdRjUa3jaouP5PFAwoM4rKLIfgvOyXUIg=";
27 nativeBuildInputs = [ cmake ];
29 "-DPYTHON_EXTENSIONS=OFF"
30 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
31 "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
49 description = "Base Thrift service and a common set of functionality for querying stats, options, and other information from a service";
50 homepage = "https://github.com/facebook/fb303";
51 license = licenses.asl20;
52 platforms = platforms.unix;
53 maintainers = with maintainers; [ kylesferrazza ];