Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / tomlcpp / default.nix
blobf782719f2b6377a09bcb20d7b3616f6207267b65
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "tomlcpp";
5   version = "0.pre+date=2022-06-25";
7   src = fetchFromGitHub {
8     owner = "cktan";
9     repo = pname;
10     rev = "4212f1fccf530e276a2e1b63d3f99fbfb84e86a4";
11     hash = "sha256-PM3gURXhyTZr59BWuLHvltjKOlKUSBT9/rqTeX5V//k=";
12   };
14   dontConfigure = true;
16   installFlags = [
17     "prefix=${placeholder "out"}"
18   ];
20   meta = with lib;{
21     homepage = "https://github.com/cktan/tomlcpp";
22     description = "No fanfare TOML C++ Library";
23     license = licenses.mit;
24     maintainers = with maintainers; [ AndersonTorres ];
25     platforms = with platforms; unix;
26   };