tomlplusplus: 3.2.0 -> 3.3.0

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-02-22 20:49:46 +01:00
parent 4b2f57cbd3
commit 2cea31ea63
No known key found for this signature in database
GPG key ID: E13DFD4B47127951

View file

@ -1,22 +1,23 @@
{ lib
, stdenv
, meson
, cmake
, ninja
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "tomlplusplus";
version = "3.2.0";
version = "3.3.0";
src = fetchFromGitHub {
owner = "marzer";
repo = pname;
rev = "v${version}";
hash = "sha256-nohO4eySs73BSgjvq+uzybiE5lw2rFY5YqGbl/oqGek=";
hash = "sha256-INX8TOEumz4B5coSxhiV7opc3rYJuQXT2k1BJ3Aje1M=";
};
nativeBuildInputs = [ meson ninja ];
nativeBuildInputs = [ meson cmake ninja ];
meta = with lib;{
homepage = "https://github.com/marzer/tomlplusplus";