emacs/elisp-packages: Remove manual Emacs package (apheleia)

We defined a manual expression before because apheleia wasn't in
MELPA. Now that it is, we can remove it.
This commit is contained in:
Brian Leung 2022-08-28 03:24:57 -07:00
parent 712fd552d6
commit 5642de5440
No known key found for this signature in database
GPG key ID: 2D86D6A94C8BB3B1
2 changed files with 0 additions and 36 deletions

View file

@ -1,34 +0,0 @@
{ lib
, stdenv
, trivialBuild
, fetchFromGitHub
, emacs
}:
trivialBuild rec {
pname = "apheleia";
version = "1.2";
src = fetchFromGitHub {
owner = "raxod502";
repo = pname;
rev = "v${version}";
hash = "sha256-yd9yhQOs0+RB8RKaXnV/kClDm8cO97RkC8yw5b8IKRo=";
};
buildInputs = [
emacs
];
meta = with lib; {
homepage = "https://github.com/raxod502/apheleia";
description = "Asynchronous buffer reformat";
longDescription = ''
Run code formatter on buffer contents without moving point, using RCS
patches and dynamic programming.
'';
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres leungbk ];
inherit (emacs.meta) platforms;
};
}

View file

@ -162,8 +162,6 @@
# Packages made the classical callPackage way
apheleia = callPackage ./apheleia { };
ebuild-mode = callPackage ./ebuild-mode { };
evil-markdown = callPackage ./evil-markdown { };