Merge pull request #168648 from AndersonTorres/new-vivarium

tomlc99: init at 0.pre+date=2022-04-04
tomlcpp: init at 0.pre+date=2022-05-01
This commit is contained in:
Anderson Torres 2022-04-14 21:08:20 -03:00 committed by GitHub
commit ccb9653427
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "tomlc99";
version = "0.pre+date=2022-04-04";
src = fetchFromGitHub {
owner = "cktan";
repo = pname;
rev = "4e7b082ccc44316f212597ae5b09a35cf9329e69";
hash = "sha256-R9OBMG/aUa80Qw/zqaks63F9ybQcThfOYRsHP4t1Gv8=";
};
dontConfigure = true;
installFlags = [
"prefix=${placeholder "out"}"
];
meta = with lib; {
homepage = "https://github.com/cktan/tomlc99";
description = "TOML v1.0.0-compliant library written in C99";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}

View File

@ -0,0 +1,15 @@
diff -Naur old-source/tomlcpp.hpp new-source/tomlcpp.hpp
--- tomlcpp/tomlcpp.hpp 1969-12-31 21:00:01.000000000 -0300
+++ tomlcpp/tomlcpp.hpp 2022-04-14 12:50:14.269775437 -0300
@@ -25,6 +25,11 @@
#ifndef TOML_HPP
#define TOML_HPP
+#include <memory>
+#include <string>
+#include <utility>
+#include <vector>
+
struct toml_table_t;
struct toml_array_t;

View File

@ -0,0 +1,35 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "tomlcpp";
version = "0.pre+date=2022-05-01";
src = fetchFromGitHub {
owner = "cktan";
repo = pname;
rev = "59fcc6dc89fb3f4130a2865e41e1fa5b8c502e45";
hash = "sha256-Uc6R5KnGIZXY0EJgFM4Xi7Jtxcu6l8yGh5xgFZPoJDM=";
};
patches = [
# Self-explaining
./0001-missing-headers.diff
];
dontConfigure = true;
installFlags = [
"prefix=${placeholder "out"}"
];
meta = with lib;{
homepage = "https://github.com/cktan/tomlcpp";
description = "No fanfare TOML C++ Library";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}

View File

@ -20478,6 +20478,10 @@ with pkgs;
kyotocabinet = callPackage ../development/libraries/kyotocabinet { };
tomlc99 = callPackage ../development/libraries/tomlc99 { };
tomlcpp = callPackage ../development/libraries/tomlcpp { };
tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { };
tokyotyrant = callPackage ../development/libraries/tokyo-tyrant { };