Merge pull request #327928 from linj-fork/pr/clean-acm

emacsPackages.acm: clean
This commit is contained in:
Kira Bruneau 2024-07-17 11:59:25 -04:00 committed by GitHub
commit 88fe9aab60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,8 +1,8 @@
{ lib
, melpaBuild
, lsp-bridge
, yasnippet
, writeText
{
lib,
melpaBuild,
lsp-bridge,
yasnippet,
}:
melpaBuild {
@ -10,23 +10,18 @@ melpaBuild {
version = lsp-bridge.version;
src = lsp-bridge.src;
commit = lsp-bridge.src.rev;
packageRequires = [
yasnippet
];
packageRequires = [ yasnippet ];
recipe = writeText "recipe" ''
(acm
:repo "manateelazycat/lsp-bridge"
:fetcher github
:files ("acm/*.el" "acm/icons"))
'';
files = ''("acm/*.el" "acm/icons")'';
meta = with lib; {
meta = {
description = "Asynchronous Completion Menu";
homepage = "https://github.com/manateelazycat/lsp-bridge";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fxttr kira-bruneau ];
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
fxttr
kira-bruneau
];
};
}