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

smd: init at 0.5.0 #340742

Closed
wants to merge 2 commits into from
Closed
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 = "[email protected]";
github = "lovek323";
Expand Down
39 changes: 39 additions & 0 deletions pkgs/by-name/se/see/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
openssl,
perl,
}:
rustPlatform.buildRustPackage rec {
pname = "see";
version = "0.5.0";

src = fetchFromGitHub {
owner = "guilhermeprokisch";
repo = pname;
rev = "v${version}";
hash = "sha256-4BVnM3SYDHsfjMsrzdFNuQ2jF5nQKa1+QH4Jf4HsXvg=";
};

cargoHash = "sha256-kQkrn7s5UuNSHkAM+hk8mFWDpnHtt8UcyyXGr1m4xkg=";

nativeBuildInputs = [
pkg-config
perl
];

buildInputs = [
openssl
];

meta = {
description = "Cute cat(1) for the terminal with advanced code viewing, Markdown rendering, 🌳 tree-sitter syntax highlighting, and more.";
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 ];
};
}
Loading