otadump: init at 0.1.2 (#329129)
[NixPkgs.git] / pkgs / by-name / to / tomlc99 / package.nix
blob5b38094432a208ad6a9d2c851998ae92432bf8c3
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "tomlc99";
9   version = "0.pre+date=2022-04-04";
11   src = fetchFromGitHub {
12     owner = "cktan";
13     repo = pname;
14     rev = "4e7b082ccc44316f212597ae5b09a35cf9329e69";
15     hash = "sha256-R9OBMG/aUa80Qw/zqaks63F9ybQcThfOYRsHP4t1Gv8=";
16   };
18   dontConfigure = true;
20   installFlags = [
21     "prefix=${placeholder "out"}"
22   ];
24   meta = with lib; {
25     homepage = "https://github.com/cktan/tomlc99";
26     description = "TOML v1.0.0-compliant library written in C99";
27     license = licenses.mit;
28     maintainers = with maintainers; [ ];
29     platforms = with platforms; unix;
30   };