3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/tv/default.nix

23 lines
563 B
Nix
Raw Normal View History

2021-09-09 02:35:11 +01:00
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "tv";
2021-09-15 04:54:27 +01:00
version = "0.5.3";
2021-09-09 02:35:11 +01:00
src = fetchFromGitHub {
owner = "uzimaru0000";
repo = pname;
rev = "v${version}";
2021-09-15 04:54:27 +01:00
sha256 = "sha256-mh/+MX0MZM1fsi9HGTioRRH1DVatmkdyiwAgG/42cVU=";
2021-09-09 02:35:11 +01:00
};
2021-09-15 04:54:27 +01:00
cargoSha256 = "sha256-8uxW0EIeMPvgffYW55Ov1euoVi8Zz9fZ4F44ktxvj9Q=";
2021-09-09 02:35:11 +01:00
meta = with lib; {
description = "Format json into table view";
homepage = "https://github.com/uzimaru0000/tv";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}