mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
24 lines
646 B
Nix
24 lines
646 B
Nix
{ fetchFromGitHub, lib, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tv";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uzimaru0000";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-qODv45smZ6jHCJBaa6EEvFLG+7g+FWrRf6BiHRFLzqM=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-nI4n4KMPLaIF978b5VvW3mb02vKW+r39nllrhukJilI=";
|
|
|
|
meta = with lib; {
|
|
description = "Format json into table view";
|
|
homepage = "https://github.com/uzimaru0000/tv";
|
|
changelog = "https://github.com/uzimaru0000/tv/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|