mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
toml2json: init at 1.3.0
This commit is contained in:
parent
c1ff59080e
commit
a0f5e0257f
20
pkgs/development/tools/toml2json/default.nix
Normal file
20
pkgs/development/tools/toml2json/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user