mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 02:27:41 +00:00
parson: init at 1.5.1
This commit is contained in:
parent
6af815e798
commit
a4e784be15
23
pkgs/development/libraries/parson/default.nix
Normal file
23
pkgs/development/libraries/parson/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user