Add Nix expression for Emacs mode htmlize.

svn path=/nixpkgs/trunk/; revision=23382
This commit is contained in:
Peter Simons 2010-08-24 08:25:51 +00:00
parent ed19b4faf0
commit 14760d869b
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,4 @@
source $stdenv/setup
mkdir -p $out/emacs/site-lisp
cp $src $out/emacs/site-lisp/htmlize.el

View File

@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "htmlize-1.37";
builder = ./builder.sh;
src = fetchurl {
url = http://fly.srk.fer.hr/~hniksic/emacs/htmlize.el;
sha256 = "17sbhf4r6jh4610x8qb2y0y3hww7w33vfsjqg4vrz99pr29xffry";
};
meta = {
description = "Convert buffer text and decorations to HTML.";
};
}

View File

@ -5387,6 +5387,8 @@ let
hol_light_mode = callPackage ../applications/editors/emacs-modes/hol_light { };
htmlize = callPackage ../applications/editors/emacs-modes/htmlize { };
magit = callPackage ../applications/editors/emacs-modes/magit { };
maudeMode = callPackage ../applications/editors/emacs-modes/maude { };