python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / tomlplusplus / default.nix
blobbe1c4b7d9c81e4d57ef00a41d30d9ca0dbb8dcf7
1 { lib
2 , stdenv
3 , meson
4 , ninja
5 , fetchFromGitHub
6 }:
8 stdenv.mkDerivation rec {
9   pname = "tomlplusplus";
10   version = "3.2.0";
12   src = fetchFromGitHub {
13     owner = "marzer";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-nohO4eySs73BSgjvq+uzybiE5lw2rFY5YqGbl/oqGek=";
17   };
19   nativeBuildInputs = [ meson ninja ];
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   };