depot/third_party/nixpkgs/pkgs/development/libraries/tomlcpp/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

35 lines
720 B
Nix

{ 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;
};
}