Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
717 B
Nix
31 lines
717 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "markdown-oxide";
|
|
version = "0.25.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Feel-ix-343";
|
|
repo = "markdown-oxide";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-Y3xMiWnLHDVeRn1KbmsC/5yJWhukKFB6X9VHnuEkFU8=";
|
|
};
|
|
|
|
cargoHash = "sha256-M4LwkF031bv7aIC9aEh5bF6Vk/DJt3DH1Rh3dUNopX4=";
|
|
|
|
meta = {
|
|
description = "Markdown LSP server inspired by Obsidian";
|
|
homepage = "https://github.com/Feel-ix-343/markdown-oxide";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
linsui
|
|
jukremer
|
|
HeitorAugustoLN
|
|
];
|
|
mainProgram = "markdown-oxide";
|
|
};
|
|
})
|