Unverified Commit 81b07682 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #217732 from Scrumplex/update-tomlplusplus-3.3.0

tomlplusplus: 3.2.0 -> 3.3.0
parents f998e2b4 2cea31ea
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
{ 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";