jsoncons: init at 0.173.4

This commit is contained in:
Nikolay Korotkiy 2024-02-09 19:55:46 +04:00
parent 763868f445
commit 7054c5744c
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation (finalAttrs: {
pname = "jsoncons";
version = "0.173.4";
src = fetchFromGitHub {
owner = "danielaparker";
repo = "jsoncons";
rev = "v${finalAttrs.version}";
hash = "sha256-Mf3kvfYAcwNrwbvGyMP6PQmk5e5Mz7b0qCZ6yi95ksk=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "A C++, header-only library for constructing JSON and JSON-like data formats";
homepage = "https://danielaparker.github.io/jsoncons/";
changelog = "https://github.com/danielaparker/jsoncons/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = licenses.boost;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.all;
};
})