455b915be0
Signed-off-by: Federico Damián Schonborn <federicoschonborn@disroot.org>
29 lines
644 B
Nix
29 lines
644 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "yyjson";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ibireme";
|
|
repo = "yyjson";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-uAh/AUUDudQr+1+3YLkg9KxARgvKWxfDZlqo8388nFY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
meta = {
|
|
description = "The fastest JSON library in C";
|
|
homepage = "https://github.com/ibireme/yyjson";
|
|
changelog = "https://github.com/ibireme/yyjson/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ federicoschonborn ];
|
|
};
|
|
})
|