nixpkgs/pkgs/applications/editors/emacs-modes/writegood/default.nix

31 lines
809 B
Nix
Raw Normal View History

2014-02-04 14:47:03 +00:00
{stdenv, fetchurl, emacs}:
2014-07-02 12:03:01 +01:00
let version = "2.0";
2014-02-04 14:47:03 +00:00
in stdenv.mkDerivation {
name = "writegood-mode-${version}";
src = fetchurl {
url = "https://github.com/bnbeckwith/writegood-mode/archive/v${version}.tar.gz";
2014-07-02 12:03:01 +01:00
sha256 = "0wf7bj9d00ggy3xigym885a3njfr98i3aqrrawf8x6lgbfc56dgp";
2014-02-04 14:47:03 +00:00
};
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 = stdenv.lib.licenses.gpl3;
2014-02-04 14:47:03 +00:00
};
}