Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / ma / markdown-oxide / package.nix
blob481dc7f402dc9eedf885f661c9096cc5931694ae
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage {
8   pname = "markdown-oxide";
9   version = "0.23.1-unstable-2024-07-20";
11   src = fetchFromGitHub {
12     owner = "Feel-ix-343";
13     repo = "markdown-oxide";
14     rev = "0f1542a54a44de8313087f6c60e6ecd54f52ede5";
15     hash = "sha256-zxJZnhN2cN3sNd+PHi2jYuHDDA4ekEVIi3X52Z/8TGM=";
16   };
18   cargoLock = {
19     lockFile = ./Cargo.lock;
20     outputHashes = {
21       "tower-lsp-0.20.0" = "sha256-QRP1LpyI52KyvVfbBG95LMpmI8St1cgf781v3oyC3S4=";
22     };
23   };
25   meta = with lib; {
26     description = "Markdown LSP server inspired by Obsidian";
27     homepage = "https://github.com/Feel-ix-343/markdown-oxide";
28     license = with licenses; [ gpl3Only ];
29     maintainers = with maintainers; [
30       linsui
31       jukremer
32     ];
33     mainProgram = "markdown-oxide";
34   };