Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ in
inherit (pkgs) basedpyright git go gopls python3;
};

lspce = callPackage ./manual-packages/lspce { };
lspce = callPackage ./manual-packages/lspce {
lspce-module = callPackage ./manual-packages/lspce/module.nix { };
};

matrix-client = callPackage ./manual-packages/matrix-client {
_map = self.map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{
lib,
callPackage,
f,
markdown-mode,
melpaBuild,
nix-update-script,
yasnippet,
# put lspce-module here so that users can override it
lspce-module,
}:

let
lspce-module = callPackage ./module.nix { };
in
melpaBuild {
pname = "lspce";
inherit (lspce-module) version src meta;
Expand Down