nixpkgs/pkgs/tools/text/tidy-viewer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
947 B
Nix
Raw Normal View History

2021-10-17 02:37:14 +02:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "tidy-viewer";
version = "1.5.2";
2021-10-17 02:37:14 +02:00
src = fetchFromGitHub {
owner = "alexhallam";
repo = "tv";
rev = version;
sha256 = "sha256-OnvRiQ5H/Vsmfu+F1i68TowjrDwQLQtV1sC6Jrp4xA4=";
2021-10-17 02:37:14 +02:00
};
cargoSha256 = "sha256-pIGuBP0a4jWFzkQfqvxQUrBmqYjhERVyEbZvL7g5hRM=";
2021-10-17 02:37:14 +02:00
# this test parses command line arguments
# error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
checkFlags = [
"--skip=build_reader_can_create_reader_without_file_specified"
];
meta = with lib; {
description = "A cross-platform CLI csv pretty printer that uses column styling to maximize viewer enjoyment";
homepage = "https://github.com/alexhallam/tv";
changelog = "https://github.com/alexhallam/tv/blob/${version}/CHANGELOG.md";
license = licenses.unlicense;
maintainers = with maintainers; [ figsoda ];
};
}