3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/emacs/elisp-packages/apheleia/default.nix
2021-09-15 12:09:33 -03:00

31 lines
634 B
Nix

{ 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;
};
}