fb303 2023.06.12.00 -> 2024.01.22.00 https://repology.org/project/fb303/versions attrpath: fb303 Checking auto update branch... No auto update branch exists Old version 2023.06.12.00" not present in staging derivation file with contents: { 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 ]; }; }