summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/htmlize/default.nix
blob: 96cc4e040c4f92145aa2f6f0d72cf0c1d112eb6a (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.47";

  builder = ./builder.sh;

  src = fetchurl {
    url = http://fly.srk.fer.hr/~hniksic/emacs/htmlize.el.cgi;
    sha256 = "0m7lby95w9sj0xlqv39imlbp80x8ajd295cs6079jyhmryf6mr10";
  };

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