mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
24 lines
737 B
Nix
24 lines
737 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "jsoncons";
|
|
version = "0.176.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "danielaparker";
|
|
repo = "jsoncons";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-RDF5HL6utM/6wna1TxCefl7X8B1qp6nsEDrguTLrtgA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
};
|
|
})
|