glaze: 7.1.0 -> 7.2.2 (#504129)

This commit is contained in:
Nick Cao
2026-04-01 22:04:58 +00:00
committed by GitHub
+8 -3
View File
@@ -11,13 +11,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "glaze";
version = "7.1.0";
version = "7.2.2";
src = fetchFromGitHub {
owner = "stephenberry";
repo = "glaze";
tag = "v${finalAttrs.version}";
hash = "sha256-W48BDsxUrFjjqUFwBcBqHr5Y7h+BtGGWdioGukBqzbE=";
hash = "sha256-E92oxXOcmA4d3s2k0D+DppnHt0Ks900+3W0XoGbbcG4=";
};
nativeBuildInputs = [ cmake ];
@@ -31,9 +31,14 @@ stdenv.mkDerivation (finalAttrs: {
];
meta = {
homepage = "https://stephenberry.github.io/glaze/";
changelog = "https://github.com/stephenberry/glaze/releases/tag/v${finalAttrs.version}";
description = "Extremely fast, in memory, JSON and interface library for modern C++";
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ moni ];
maintainers = with lib.maintainers; [
moni
miniharinn
];
license = lib.licenses.mit;
};
})