lol

tomlplusplus: init at 3.2.0

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

+30
+28
pkgs/development/libraries/tomlplusplus/default.nix
··· 1 + { lib 2 + , stdenv 3 + , meson 4 + , ninja 5 + , fetchFromGitHub 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "tomlplusplus"; 10 + version = "3.2.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "marzer"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + hash = "sha256-nohO4eySs73BSgjvq+uzybiE5lw2rFY5YqGbl/oqGek="; 17 + }; 18 + 19 + nativeBuildInputs = [ meson ninja ]; 20 + 21 + meta = with lib;{ 22 + homepage = "https://github.com/marzer/tomlplusplus"; 23 + description = "Header-only TOML config file parser and serializer for C++17"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ Scrumplex ]; 26 + platforms = with platforms; unix; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 22166 22166 22167 22167 tomlcpp = callPackage ../development/libraries/tomlcpp { }; 22168 22168 22169 + tomlplusplus = callPackage ../development/libraries/tomlplusplus { }; 22170 + 22169 22171 tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { }; 22170 22172 22171 22173 tokyotyrant = callPackage ../development/libraries/tokyo-tyrant { };