evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / to / tomlq / package.nix
blob67dd3a2db9667a575609a71b6b6bbf0a665004ce
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "tomlq";
8   version = "0.1.6";
10   src = fetchFromGitHub {
11     owner = "cryptaliagy";
12     repo = "tomlq";
13     rev = "refs/tags/${version}";
14     hash = "sha256-g8xjz8qCTiulTwcEbLTHYldw4PI+4ZfCOMJs+J6L1C4=";
15   };
17   cargoHash = "sha256-/cepTVJoBM1LYZkFpH9UCvE74cSszHDaeThsZksQ1P8=";
19   meta = {
20     description = "Tool for getting data from TOML files on the command line";
21     homepage = "https://github.com/cryptaliagy/tomlq";
22     license = lib.licenses.mit;
23     maintainers = with lib.maintainers; [ kinzoku ];
24     mainProgram = "tq";
25   };