1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/applications/editors/emacs-modes/htmlize/default.nix
2013-03-22 00:00:06 +01:00

17 lines
339 B
Nix

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