nixpkgs/pkgs/development/libraries/tomlplusplus/default.nix
Sefa Eyeoglu af411622fd
tomlplusplus: init at 3.2.0
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-10-18 19:35:10 +02:00

29 lines
613 B
Nix

{ 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;
};
}