rustlens: init at 0.2.1

Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313
2026-05-05 13:26:37 -04:00
parent a52a4f0adc
commit bee10e416c
+38
View File
@@ -0,0 +1,38 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rustlens";
version = "0.2.1";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "yashksaini-coder";
repo = "Rustlens";
tag = "v${finalAttrs.version}";
hash = "sha256-BYROEUBa9RZXuJbNbKUbWXu9mPYIuAyO6JwPlNmj244=";
};
cargoHash = "sha256-WvUu2M2WFLo5Ve+ER7vpl7q/cpPR4g1vY4z9hRl3On0=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = {
description = "Rustlens is a terminal-based application for exploring Rust codebases.";
homepage = "https://github.com/yashksaini-coder/Rustlens";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gwg313 ];
mainProgram = "rustlens";
};
})