Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 662 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "csv-tui"; 9 version = "1.2"; 10 11 src = fetchFromGitHub { 12 owner = "nathangavin"; 13 repo = "csv-tui"; 14 rev = "v${version}"; 15 hash = "sha256-T8T9fW4E/wigktSomoc+xPkVqX5T3OnTmL4XIT5YXe8="; 16 }; 17 18 cargoHash = "sha256-bc/7wt7P7v5VJv2Jh/ct9/N4xHdVWshRl+maD2LBSG0="; 19 20 meta = { 21 description = "Terminal based csv editor which is designed to be memory efficient but still useful"; 22 homepage = "https://github.com/nathangavin/csv-tui"; 23 license = lib.licenses.mit; 24 maintainers = with lib.maintainers; [ ottoblep ]; 25 mainProgram = "csv_tui"; 26 }; 27}