jsoncons: init at 0.173.4
This commit is contained in:
parent
763868f445
commit
7054c5744c
1 changed files with 24 additions and 0 deletions
24
pkgs/by-name/js/jsoncons/package.nix
Normal file
24
pkgs/by-name/js/jsoncons/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in a new issue