about summary refs log tree commit diff
path: root/pkgs/by-name/ro/rofi-obsidian/package.nix
blob: 5ab8d19be5f68ebd11db6a41c2f12bbe5f64de9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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";
  };
}