Merge pull request #1673 from pSub/writegood-mode
Add emacs minor mode writegood
This commit is contained in:
commit
19757df9dc
2 changed files with 32 additions and 0 deletions
30
pkgs/applications/editors/emacs-modes/writegood/default.nix
Normal file
30
pkgs/applications/editors/emacs-modes/writegood/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{stdenv, fetchurl, emacs}:
|
||||
|
||||
let version = "1.2";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "writegood-mode-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/bnbeckwith/writegood-mode/archive/v${version}.tar.gz";
|
||||
sha256 = "1kgi2i5pq0vk751z079yp7kdw721cclfg9d9p28h3a8xbr95l7b6";
|
||||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
|
||||
buildPhase = ''
|
||||
emacs -L . --batch -f batch-byte-compile *.el
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -d $out/share/emacs/site-lisp
|
||||
install *.el *.elc $out/share/emacs/site-lisp
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Emacs minor mode that aids in finding common writing problems";
|
||||
homepage = https://github.com/bnbeckwith/writegood-mode;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.pSub ];
|
||||
license = "GPL3";
|
||||
};
|
||||
}
|
|
@ -7791,6 +7791,8 @@ let
|
|||
|
||||
sunriseCommander = callPackage ../applications/editors/emacs-modes/sunrise-commander { };
|
||||
|
||||
writeGood = callPackage ../applications/editors/emacs-modes/writegood { };
|
||||
|
||||
xmlRpc = callPackage ../applications/editors/emacs-modes/xml-rpc { };
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue