emacsPackages.clingo-mode: fix build (#348311)

This commit is contained in:
Lin Jian 2024-10-14 02:31:52 +08:00 committed by GitHub
commit e6f11b44ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -861,6 +861,18 @@ let
'';
});
clingo-mode = super.clingo-mode.overrideAttrs (
finalAttrs: previousAttrs: {
patches = previousAttrs.patches or [ ] ++ [
(pkgs.fetchpatch {
name = "add-missing-end-parenthesis.patch";
url = "https://github.com/llaisdy/clingo-mode/pull/3/commits/063445a24afb176c3f16af7a2763771dbdc4ecf6.patch";
hash = "sha256-OYP5LaZmCUJFgFk1Pf30e7sml8fC+xI4HSyDz7lck7E=";
})
];
}
);
# https://github.com/atilaneves/cmake-ide/issues/176
cmake-ide = addPackageRequires super.cmake-ide [ self.dash ];