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:
commit
ccb9653427
30
pkgs/development/libraries/tomlc99/default.nix
Normal file
30
pkgs/development/libraries/tomlc99/default.nix
Normal 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;
|
||||
};
|
||||
}
|
15
pkgs/development/libraries/tomlcpp/0001-missing-headers.diff
Normal file
15
pkgs/development/libraries/tomlcpp/0001-missing-headers.diff
Normal 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;
|
||||
|
35
pkgs/development/libraries/tomlcpp/default.nix
Normal file
35
pkgs/development/libraries/tomlcpp/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user