tomlplusplus: init at 3.2.0

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2022-09-26 16:11:45 +02:00
parent 07acee59ed
commit af411622fd
No known key found for this signature in database
GPG Key ID: C10411294912A422
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, stdenv
, meson
, ninja
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "tomlplusplus";
version = "3.2.0";
src = fetchFromGitHub {
owner = "marzer";
repo = pname;
rev = "v${version}";
hash = "sha256-nohO4eySs73BSgjvq+uzybiE5lw2rFY5YqGbl/oqGek=";
};
nativeBuildInputs = [ meson ninja ];
meta = with lib;{
homepage = "https://github.com/marzer/tomlplusplus";
description = "Header-only TOML config file parser and serializer for C++17";
license = licenses.mit;
maintainers = with maintainers; [ Scrumplex ];
platforms = with platforms; unix;
};
}

View File

@ -22166,6 +22166,8 @@ with pkgs;
tomlcpp = callPackage ../development/libraries/tomlcpp { };
tomlplusplus = callPackage ../development/libraries/tomlplusplus { };
tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { };
tokyotyrant = callPackage ../development/libraries/tokyo-tyrant { };