rapidjson: remove uses of with

This commit is contained in:
Tobias Mayer 2024-11-05 09:14:47 +01:00
parent 7d40d31ade
commit 18ea4d3478
No known key found for this signature in database
GPG Key ID: F8657E90819A1298

View File

@ -70,15 +70,15 @@ stdenv.mkDerivation (finalAttrs: {
valgrind
];
meta = with lib; {
meta = {
description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";
homepage = "http://rapidjson.org/";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [
dotlambda
Madouura
tobim
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = [
lib.maintainers.dotlambda
lib.maintainers.Madouura
lib.maintainers.tobim
];
};
})