csvlens: init at 0.5.1
This commit is contained in:
parent
ad51bcc62a
commit
bbd978449e
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/cs/csvlens/package.nix
Normal file
27
pkgs/by-name/cs/csvlens/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "csvlens";
|
||||||
|
version = "0.5.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "YS-L";
|
||||||
|
repo = "csvlens";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-9zIi49iXFOARSZsz0iqzC7NfoiBngfNt6A7vZuwxItI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-DDMsycYSzkBNvf4f9WVpnADpP72GQEkmJIJsfrlfMcI=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Command line csv viewer";
|
||||||
|
homepage = "https://github.com/YS-L/csvlens";
|
||||||
|
changelog = "https://github.com/YS-L/csvlens/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ natsukium ];
|
||||||
|
mainProgram = "csvlens";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue