nixpkgs/pkgs/applications/editors/emacs-modes/htmlize/default.nix
Arie Middelkoop d6f60f7135 emacs htmlize: fix of broken source url.
svn path=/nixpkgs/trunk/; revision=31827
2012-01-24 22:06:35 +00:00

17 lines
351 B
Nix

{ 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.";
};
}