1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

emacsPackages.acm: format using nixfmt-rfc-style

This commit is contained in:
Lin Jian 2024-07-17 22:15:08 +08:00
parent 0c364da3bd
commit 72357dfdaa
No known key found for this signature in database
GPG key ID: A6698D36434F75A5

View file

@ -1,7 +1,8 @@
{ lib
, melpaBuild
, lsp-bridge
, yasnippet
{
lib,
melpaBuild,
lsp-bridge,
yasnippet,
}:
melpaBuild {
@ -10,9 +11,7 @@ melpaBuild {
src = lsp-bridge.src;
packageRequires = [
yasnippet
];
packageRequires = [ yasnippet ];
files = ''("acm/*.el" "acm/icons")'';
@ -20,6 +19,9 @@ melpaBuild {
description = "Asynchronous Completion Menu";
homepage = "https://github.com/manateelazycat/lsp-bridge";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fxttr kira-bruneau ];
maintainers = with lib.maintainers; [
fxttr
kira-bruneau
];
};
}