083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
17 lines
338 B
Nix
17 lines
338 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";
|
|
};
|
|
}
|