emacs-packages: Remove htmlize from old emacs package infrastructure

This commit is contained in:
adisbladis 2019-08-18 17:02:39 +01:00
parent 84a09cad68
commit 6b2f177737
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,22 +0,0 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
name = "htmlize-1.47";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "htmlize";
rev = "release/1.47";
name = "htmlize-1.47-src";
sha256 = "1vkqxgirc82vc44g7xhhr041arf93yirjin3h144kjyfkgkplnkp";
};
installPhase = ''
mkdir -p $out/share/emacs/site-lisp
cp htmlize.el $out/share/emacs/site-lisp/
'';
meta = {
description = "Convert buffer text and decorations to HTML";
};
}