lol

tomlc17: init at 250712

Signed-off-by: Marcin Serwin <marcin@serwin.dev>

+35
+35
pkgs/by-name/to/tomlc17/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "tomlc17"; 10 + version = "250712"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "cktan"; 14 + repo = "tomlc17"; 15 + tag = "R${finalAttrs.version}"; 16 + hash = "sha256-0if07Zj7Og+DBc/gxmAEHQh7QwAo8C/4S+x9IttEUjI="; 17 + }; 18 + 19 + doCheck = false; # tries to download toml-test suite 20 + 21 + installFlags = [ 22 + "prefix=${placeholder "out"}" 23 + ]; 24 + 25 + passthru.updateScript = nix-update-script { }; 26 + 27 + meta = { 28 + homepage = "https://github.com/cktan/tomlc17"; 29 + changelog = "https://github.com/cktan/tomlc17/releases/tag/R${finalAttrs.version}"; 30 + description = "TOML parser in C17"; 31 + license = lib.licenses.mit; 32 + maintainers = with lib.maintainers; [ marcin-serwin ]; 33 + platforms = with lib.platforms; unix; 34 + }; 35 + })