about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/htmlize/default.nix
blob: 948beae82d4717db9bc25152472fe7251d9504b9 (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.cgi;
    sha256 = "70cf41a2ea6a478a45143a8cd672381c01ed894448200e602531acbf2b1fd160";
  };

  meta = {
    description = "Convert buffer text and decorations to HTML.";
  };
}