rofi-nerdy: init at 0.0.8 (#434862)

This commit is contained in:
Yohann Boniface
2025-08-19 22:54:50 +02:00
committed by GitHub
2 changed files with 44 additions and 0 deletions
+6
View File
@@ -27725,6 +27725,12 @@
githubId = 474343;
name = "Xavier Zwirtz";
};
xavwe = {
email = "git@xavwe.dev";
github = "xavwe";
githubId = 125409009;
name = "Xaver Wenhart";
};
XBagon = {
name = "XBagon";
email = "xbagon@outlook.de";
+38
View File
@@ -0,0 +1,38 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
glib,
cairo,
pango,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rofi-nerdy";
version = "0.0.8";
src = fetchFromGitHub {
owner = "Rolv-Apneseth";
repo = "rofi-nerdy";
tag = "v${finalAttrs.version}";
hash = "sha256-RiQ8bP7Q1ItZfCO94R95aTenqVOD45ohfUdmtDn0r9k=";
};
cargoHash = "sha256-NvS38uTqlBTUmRg2z0Faa5bTlRC/DTXQU3MCcSmPerA=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [
glib
cairo
pango
];
meta = {
description = "Nerd font icon selector plugin for rofi";
homepage = "https://github.com/Rolv-Apneseth/rofi-nerdy";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ xavwe ];
platforms = lib.platforms.linux;
};
})