3
0
Fork 0
forked from mirrors/nixpkgs

emacsPackages.apheleia: 1.1.2+unstable=2021-10-03 -> 1.2

This commit is contained in:
AndersonTorres 2022-01-08 18:38:00 -03:00
parent acae534d06
commit 34b6ed8573

View file

@ -7,13 +7,13 @@
trivialBuild rec {
pname = "apheleia";
version = "1.1.2+unstable=2021-10-03";
version = "1.2";
src = fetchFromGitHub {
owner = "raxod502";
repo = pname;
rev = "8b9d576f2fda10d0c9051fc03c1eb1d9791e32fd";
hash = "sha256-QwGlCdHBll16mbfQxGw1EORZFUxYCZSt8ThYTTGjRpo=";
rev = "v${version}";
hash = "sha256-yd9yhQOs0+RB8RKaXnV/kClDm8cO97RkC8yw5b8IKRo=";
};
buildInputs = [
@ -23,8 +23,12 @@ trivialBuild rec {
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 ];
platforms = emacs.meta.platforms;
inherit (emacs.meta) platforms;
};
}