mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildDotnetModule
|
|
, dotnetCorePackages
|
|
, marksman
|
|
, testVersion
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "marksman";
|
|
version = "2022-12-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "artempyanykh";
|
|
repo = "marksman";
|
|
rev = version;
|
|
sha256 = "sha256-IOmAOO45sD0TkphbHWLCXXyouxKNJoiNYHXV/bw0xH4=";
|
|
};
|
|
|
|
projectFile = "Marksman/Marksman.fsproj";
|
|
dotnetBuildFlags = "-p:VersionString=${version}";
|
|
|
|
doCheck = true;
|
|
testProjectFile = "Tests/Tests.fsproj";
|
|
|
|
nugetDeps = ./deps.nix;
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_6_0;
|
|
dotnet-runtime = dotnetCorePackages.runtime_6_0;
|
|
|
|
postInstall = ''
|
|
install -m 644 -D -t "$out/share/doc/${pname}" LICENSE
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
tests.version = testVersion {
|
|
package = marksman;
|
|
command = "marksman --version";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Language Server for Markdown";
|
|
longDescription = ''
|
|
Marksman is a program that integrates with your editor
|
|
to assist you in writing and maintaining your Markdown documents.
|
|
Using LSP protocol it provides completion, goto definition,
|
|
find references, rename refactoring, diagnostics, and more.
|
|
In addition to regular Markdown, it also supports wiki-link-style
|
|
references that enable Zettelkasten-like note taking.
|
|
'';
|
|
homepage = "https://github.com/artempyanykh/marksman";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ stasjok ];
|
|
platforms = dotnet-sdk.meta.platforms;
|
|
};
|
|
}
|