rofi-obsidian: init at 0.1.0

rofi-obsidian is a rofi plugin that allows opening vaults from rofi
This commit is contained in:
Nydragon 2024-05-17 01:39:00 +09:00
parent 34ced045af
commit b8586717f5
No known key found for this signature in database
GPG Key ID: 14AA30A865EA1209

View File

@ -0,0 +1,26 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage {
pname = "rofi-obsidian";
version = "0.1.0";
src = fetchFromGitHub {
owner = "Nydragon";
repo = "rofi-obsidian";
rev = "c8f34e424a59b8a15bc77152462d59cfff7fc20e";
hash = "sha256-t/neFiLdrA37jknLEsHmWhCug5BS40HgQpQ5a1svtQw=";
};
cargoHash = "sha256-Eikzn7ZMsrujBdzmsiHGSYAJ+kGBgQAaiVJzixHknWM=";
meta = {
description = "Launch your Obsidian vaults from the comfort of rofi";
homepage = "https://github.com/Nydragon/rofi-obsidian";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ nydragon ];
mainProgram = "rofi-obsidian";
};
}