nixpkgs/pkgs/development/libraries/tomlplusplus/default.nix
Sefa Eyeoglu 2cea31ea63
tomlplusplus: 3.2.0 -> 3.3.0
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-02-22 20:49:46 +01:00

30 lines
627 B
Nix

{ lib
, stdenv
, meson
, cmake
, ninja
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "tomlplusplus";
version = "3.3.0";
src = fetchFromGitHub {
owner = "marzer";
repo = pname;
rev = "v${version}";
hash = "sha256-INX8TOEumz4B5coSxhiV7opc3rYJuQXT2k1BJ3Aje1M=";
};
nativeBuildInputs = [ meson cmake 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;
};
}