glaze: 5.3.0 -> 5.4.0 (#414660)

This commit is contained in:
Nikolay Korotkiy 2025-06-08 19:31:01 +04:00 committed by GitHub
commit bcbfa423e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,22 +8,22 @@
stdenv.mkDerivation (final: {
pname = "glaze";
version = "5.3.0";
version = "5.4.0";
src = fetchFromGitHub {
owner = "stephenberry";
repo = "glaze";
rev = "v${final.version}";
hash = "sha256-o0+V5mSMSHMDm7XEIVn/zHWJoFuGePOSzdLAxmOMxUM=";
tag = "v${final.version}";
hash = "sha256-AG6fnax9UZEhGtAUc8bgGijk8q7ge6lDTb0XjqL+kks=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ (lib.cmakeBool "glaze_ENABLE_AVX2" enableAvx2) ];
meta = with lib; {
meta = {
description = "Extremely fast, in memory, JSON and interface library for modern C++";
platforms = platforms.all;
maintainers = with maintainers; [ moni ];
license = licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ moni ];
license = lib.licenses.mit;
};
})