nixpkgs/pkgs/applications/editors/emacs-modes/htmlize/default.nix
2013-01-13 14:30:54 +01:00

16 lines
339 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "htmlize-1.43";
builder = ./builder.sh;
src = fetchurl {
url = http://fly.srk.fer.hr/~hniksic/emacs/htmlize.el.cgi;
sha256 = "0bdaxh3pjf4z55i7vz4yz3yz45720h8aalhmx13bgkrpijzn93bi";
};
meta = {
description = "Convert buffer text and decorations to HTML.";
};
}