Merge pull request #294575 from mattpolzin/add-idris2-lsp-meta
idris2Packages.idris2Lsp: Add metadata to derivation
This commit is contained in:
commit
70d254a3de
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ fetchFromGitHub, idris2Packages, makeWrapper }:
|
{ lib, fetchFromGitHub, idris2Packages, makeWrapper }:
|
||||||
|
|
||||||
let
|
let
|
||||||
globalLibraries = let
|
globalLibraries = let
|
||||||
|
@ -40,5 +40,12 @@ let
|
||||||
wrapProgram $out/bin/idris2-lsp \
|
wrapProgram $out/bin/idris2-lsp \
|
||||||
--suffix IDRIS2_PACKAGE_PATH ':' "${globalLibrariesPath}"
|
--suffix IDRIS2_PACKAGE_PATH ':' "${globalLibrariesPath}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Language Server for Idris2";
|
||||||
|
homepage = "https://github.com/idris-community/idris2-lsp";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ mattpolzin ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in lspPkg.executable
|
in lspPkg.executable
|
||||||
|
|
Loading…
Reference in a new issue