about summary refs log tree commit diff
path: root/pkgs/development/libraries/tomlcpp/default.nix
blob: 96559f04541ba2757c7da09be0eaddb91f6d86e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
  };
}