mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
35 lines
780 B
Nix
35 lines
780 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "markdown-oxide";
|
|
version = "0.24.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Feel-ix-343";
|
|
repo = "markdown-oxide";
|
|
rev = "v${version}";
|
|
hash = "sha256-LMDL2jLHKgPBkz7QcU4yVzR2ySaboCZ9AOKmdA/NA4c=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"tower-lsp-0.20.0" = "sha256-QRP1LpyI52KyvVfbBG95LMpmI8St1cgf781v3oyC3S4=";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Markdown LSP server inspired by Obsidian";
|
|
homepage = "https://github.com/Feel-ix-343/markdown-oxide";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [
|
|
linsui
|
|
jukremer
|
|
];
|
|
mainProgram = "markdown-oxide";
|
|
};
|
|
}
|