about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/htmlize/default.nix
blob: e749dfa44864c469d3218c8e084e2df7be9eca73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.";
  };
}