toml2json: init at 1.3.0

This commit is contained in:
Rafael Varago 2022-01-30 16:32:25 +01:00 committed by Yt
parent c1ff59080e
commit a0f5e0257f
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "toml2json";
version = "1.3.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-TxTxKHf5g+mBXDq147T5tuwCqyfyoz6Mj55g1tlgRDY=";
};
cargoHash = "sha256-EYp30TMIpzSCkPIqqdc7sGpfaWs9OLi9ey7DoPE4jzI=";
meta = with lib; {
description = "A very small CLI for converting TOML to JSON";
homepage = "https://github.com/woodruffw/toml2json";
license = with licenses; [ mit ];
maintainers = with maintainers; [ rvarago ];
};
}

View file

@ -10556,6 +10556,8 @@ with pkgs;
tokio-console = callPackage ../development/tools/tokio-console { };
toml2json = callPackage ../development/tools/toml2json { };
toml2nix = (callPackage ../tools/toml2nix { }).toml2nix { };
topgrade = callPackage ../tools/misc/topgrade {