see-cat: init at 0.8.1 (#340941)

authored by Aleksana and committed by GitHub 270ac82a 79ce0bb9

+43
+5
maintainers/maintainer-list.nix
··· 12135 12135 githubId = 4969294; 12136 12136 name = "Louis Tim Larsen"; 12137 12137 }; 12138 + louis-thevenet = { 12139 + name = "Louis Thevenet"; 12140 + github = "louis-thevenet"; 12141 + githubId = 55986107; 12142 + }; 12138 12143 lovek323 = { 12139 12144 email = "jason@oconal.id.au"; 12140 12145 github = "lovek323";
+38
pkgs/by-name/se/see-cat/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + pkg-config, 6 + }: 7 + rustPlatform.buildRustPackage rec { 8 + pname = "see-cat"; 9 + version = "0.8.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "guilhermeprokisch"; 13 + repo = "see"; 14 + rev = "v${version}"; 15 + hash = "sha256-VCUrPCaG2fKp9vpFLzNLcfCBu2NiwdY2+bo1pd7anZY="; 16 + }; 17 + 18 + cargoHash = "sha256-lfpJ40QpZ9eQhDFJjLwiDU5DmaYAqCh5iJSjZ+jj+kk="; 19 + 20 + nativeBuildInputs = [ 21 + pkg-config 22 + ]; 23 + 24 + meta = { 25 + description = "Cute cat(1) for the terminal"; 26 + longDescription = '' 27 + see is a powerful file visualization tool for the terminal, offering 28 + advanced code viewing capabilities, Markdown rendering, and 29 + more. It provides syntax highlighting, emoji support, and image 30 + rendering capabilities, offering a visually appealing way to view 31 + various file types directly in your console. 32 + ''; 33 + homepage = "https://github.com/guilhermeprokisch/see"; 34 + license = lib.licenses.mit; 35 + mainProgram = "see"; 36 + maintainers = with lib.maintainers; [ louis-thevenet ]; 37 + }; 38 + }