csview: init at 0.3.8
This commit is contained in:
parent
82d19cb068
commit
90ec05be8f
2 changed files with 24 additions and 0 deletions
22
pkgs/tools/text/csview/default.nix
Normal file
22
pkgs/tools/text/csview/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ fetchFromGitHub, lib, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "csview";
|
||||
version = "0.3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wfxr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "18bz12yn85h9vj0b18iaziix9km2iwh8gwfs93fddjv6kg87p38q";
|
||||
};
|
||||
|
||||
cargoSha256 = "1my6gl8zq5k7clzapgbf1mmcgq8mmdbhl250rdd1fvfd59wkrwra";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A high performance csv viewer with cjk/emoji support";
|
||||
homepage = "https://github.com/wfxr/csview";
|
||||
license = with licenses; [ mit /* or */ asl20 ];
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -2442,6 +2442,8 @@ with pkgs;
|
|||
|
||||
csv2odf = callPackage ../applications/office/csv2odf { };
|
||||
|
||||
csview = callPackage ../tools/text/csview { };
|
||||
|
||||
csvkit = callPackage ../tools/text/csvkit { };
|
||||
|
||||
csvtool = callPackage ../development/ocaml-modules/csv/csvtool.nix { };
|
||||
|
|
Loading…
Reference in a new issue