9 stdenv.mkDerivation (final: {
13 src = fetchFromGitHub {
14 owner = "stephenberry";
16 rev = "v${final.version}";
17 hash = "sha256-gQfRz7b1kbn1AoKUNG62LBynmJNbDTXzPXaX6kDCjVw=";
20 nativeBuildInputs = [ cmake ];
21 cmakeFlags = [ (lib.cmakeBool "glaze_ENABLE_AVX2" enableAvx2) ];
24 description = "Extremely fast, in memory, JSON and interface library for modern C++";
25 platforms = platforms.all;
26 maintainers = with maintainers; [ moni ];
27 license = licenses.mit;