Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

see-cat: init at 0.8.1 #340941

Merged
merged 2 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12073,6 +12073,11 @@
githubId = 4969294;
name = "Louis Tim Larsen";
};
louis-thevenet = {
name = "Louis Thevenet";
github = "louis-thevenet";
githubId = 55986107;
};
lovek323 = {
email = "jason@oconal.id.au";
github = "lovek323";
Expand Down
38 changes: 38 additions & 0 deletions pkgs/by-name/se/see-cat/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
}:
rustPlatform.buildRustPackage rec {
pname = "see-cat";
version = "0.8.1";

src = fetchFromGitHub {
owner = "guilhermeprokisch";
repo = "see";
rev = "v${version}";
hash = "sha256-VCUrPCaG2fKp9vpFLzNLcfCBu2NiwdY2+bo1pd7anZY=";
};

cargoHash = "sha256-lfpJ40QpZ9eQhDFJjLwiDU5DmaYAqCh5iJSjZ+jj+kk=";

nativeBuildInputs = [
pkg-config
];

meta = {
description = "Cute cat(1) for the terminal";
longDescription = ''
see is a powerful file visualization tool for the terminal, offering
advanced code viewing capabilities, Markdown rendering, and
more. It provides syntax highlighting, emoji support, and image
rendering capabilities, offering a visually appealing way to view
various file types directly in your console.
'';
homepage = "https://github.com/guilhermeprokisch/see";
license = lib.licenses.mit;
mainProgram = "see";
maintainers = with lib.maintainers; [ louis-thevenet ];
};
}