about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/apheleia/default.nix
blob: 935533b34ae9508a474d52e9e74da16acc3fbfbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, stdenv
, trivialBuild
, fetchFromGitHub
, emacs
}:

trivialBuild rec {
  pname = "apheleia";
  version = "0.0.0+unstable=2021-08-08";

  src = fetchFromGitHub {
    owner = "raxod502";
    repo = pname;
    rev = "8e022c67fea4248f831c678b31c19646cbcbbf6f";
    hash = "sha256-Put/BBQ7V423C18UIVfaM17T+TDWtAxRZi7WI8doPJw=";
  };

  buildInputs = [
    emacs
  ];

  meta = with lib; {
    homepage = "https://github.com/raxod502/apheleia";
    description = "Asynchronous buffer reformat";
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres leungbk ];
    platforms = emacs.meta.platforms;
  };
}