nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6rustPlatform.buildRustPackage (finalAttrs: {
7 pname = "markdown-oxide";
8 version = "0.25.10";
9
10 src = fetchFromGitHub {
11 owner = "Feel-ix-343";
12 repo = "markdown-oxide";
13 tag = "v${finalAttrs.version}";
14 hash = "sha256-nzUje11rp6ByfajrxeEszi1mYs2Pu9Fq+blRdUECqT4=";
15 };
16
17 cargoHash = "sha256-Zzo7lEGfzPpxODeVHm89q22aAmuN5h2nIdh2eF2jSpY=";
18
19 meta = {
20 description = "Markdown LSP server inspired by Obsidian";
21 homepage = "https://github.com/Feel-ix-343/markdown-oxide";
22 license = lib.licenses.asl20;
23 maintainers = with lib.maintainers; [
24 linsui
25 jukremer
26 HeitorAugustoLN
27 ];
28 mainProgram = "markdown-oxide";
29 };
30})