biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / tv / default.nix
blob154d98b4c592cf5097ecab5a3df8942915128f89
1 { fetchFromGitHub, lib, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "tv";
5   version = "0.7.0";
7   src = fetchFromGitHub {
8     owner = "uzimaru0000";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-qODv45smZ6jHCJBaa6EEvFLG+7g+FWrRf6BiHRFLzqM=";
12   };
14   cargoHash = "sha256-nI4n4KMPLaIF978b5VvW3mb02vKW+r39nllrhukJilI=";
16   meta = with lib; {
17     description = "Format json into table view";
18     mainProgram = "tv";
19     homepage = "https://github.com/uzimaru0000/tv";
20     changelog = "https://github.com/uzimaru0000/tv/blob/v${version}/CHANGELOG.md";
21     license = licenses.mit;
22     maintainers = with maintainers; [ figsoda ];
23   };