Skip to content

Commit

Permalink
csv-tui: init at 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ottoblep committed Aug 15, 2024
1 parent c46d43c commit 4fe8b68
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15437,6 +15437,11 @@
github = "OlivierNicole";
githubId = 14031333;
};
ottoblep = {
email = "[email protected]";
github = "ottoblep";
githubId = 57066925;
};
otwieracz = {
email = "[email protected]";
github = "otwieracz";
Expand Down
26 changes: 26 additions & 0 deletions pkgs/by-name/cs/csv-tui/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
pname = "csv-tui";
version = "1.1";

src = fetchFromGitHub {
owner = "nathangavin";
repo = pname;
rev = "v${version}";
hash = "sha256-IRXLwZ2FHcCDmDVJ0xnV/4q+X2AFXPX/+Ph4Xxo3DyM=";
};

cargoHash = "sha256-wgeVcX0zSXffAuvKw2eKXC846WlC8F9UGMoxP3IXoLE=";

meta = with lib; {
description = "A terminal based csv editor which is designed to be not a ram hog like standard csv editors, but more useful than other text editors";
homepage = "https://github.com/nathangavin/csv-tui";
license = licenses.unfree;
maintainers = with maintainers; [ ottoblep ];
mainProgram = "csv_tui";
};
}

0 comments on commit 4fe8b68

Please sign in to comment.