parson: init at 1.5.1

This commit is contained in:
Mario Rodas 2023-04-01 04:20:00 +00:00
parent 6af815e798
commit a4e784be15
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja }:
stdenv.mkDerivation {
pname = "parson";
version = "1.5.1";
src = fetchFromGitHub {
owner = "kgabis";
repo = "parson";
rev = "3c4ee26dbb3df177a2d7b9d80e154ec435ca8c01"; # upstream doesn't use tags
sha256 = "sha256-fz2yhxy6Q5uEPAbzMxMiaXqSYkQ9uB3A4sV2qYOekJ8=";
};
nativeBuildInputs = [ meson ninja ];
meta = with lib; {
description = "Lightweight JSON library written in C";
homepage = "https://github.com/kgabis/parson";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -32240,6 +32240,8 @@ with pkgs;
p4d = callPackage ../applications/version-management/p4d { };
p4v = callPackage ../applications/version-management/p4v { };
parson = callPackage ../development/libraries/parson { };
partio = callPackage ../development/libraries/partio { };
pc-ble-driver = callPackage ../development/libraries/pc-ble-driver {