silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / to / toml2json / package.nix
blob6d7a8dcf6a3603d3fb612268e1ac2c170d64e20d
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "toml2json";
5   version = "1.3.1";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-9q2HtNzsRO0/5gcmxUfWuQlWsfvw/A21WEXZlifCUjY=";
10   };
12   cargoHash = "sha256-laOM7LpmsCpLcm4kPRsJiXHoKR58RCuQxVO5Z78beWI=";
14   meta = with lib; {
15     description = "Very small CLI for converting TOML to JSON";
16     mainProgram = "toml2json";
17     homepage = "https://github.com/woodruffw/toml2json";
18     license = with licenses; [ mit ];
19     maintainers = with maintainers; [ rvarago ];
20   };