17 stdenv.mkDerivation rec {
19 version = "2023.06.12.00";
21 src = fetchFromGitHub {
25 sha256 = "sha256-nUOPYb5/tLyHjaZDvKuq0vdu4L7XOmO8R9nNLGAzeLI=";
28 nativeBuildInputs = [ cmake ];
30 "-DPYTHON_EXTENSIONS=OFF"
31 ] ++ lib.optionals stdenv.isDarwin [
32 "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
49 description = "a 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 ];