biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / csview / default.nix
blob172963858e25bf36fd86dda82696979993db98a6
1 { fetchFromGitHub, lib, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "csview";
5   version = "1.3.3";
7   src = fetchFromGitHub {
8     owner = "wfxr";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-9rjrNxMUUuH3S6fVsooscgIP+oFeQ6/gBQmuUMPDfp0=";
12   };
14   cargoHash = "sha256-/0jviI91y4eAJ0uZDQqnw9htcl+j0aybY0U5gCc9DFg=";
16   meta = with lib; {
17     description = "High performance csv viewer with cjk/emoji support";
18     mainProgram = "csview";
19     homepage = "https://github.com/wfxr/csview";
20     license = with licenses; [ mit /* or */ asl20 ];
21     maintainers = with maintainers; [ figsoda ];
22   };