3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/tidy-viewer/default.nix

30 lines
948 B
Nix
Raw Normal View History

2021-10-17 01:37:14 +01:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "tidy-viewer";
2021-10-18 17:08:22 +01:00
version = "0.0.22";
2021-10-17 01:37:14 +01:00
src = fetchFromGitHub {
owner = "alexhallam";
repo = "tv";
rev = version;
2021-10-18 17:08:22 +01:00
sha256 = "sha256-OuNpp9EKiU+fQSZZO7zpI36nCiZBXK6OznJGY4KMftU=";
2021-10-17 01:37:14 +01:00
};
2021-10-18 17:08:22 +01:00
cargoSha256 = "sha256-LRoNGDOrbCjmZJRe+EUKxkDJjC92bQRRwP48jqDp9PU=";
2021-10-17 01:37:14 +01: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 ];
};
}