nixpkgs/pkgs/applications/editors/emacs-modes/font-lock-plus/default.nix
Brian McKenna 1918257770 font-lock-plus: fix recipe
Used the wiki fetcher which doesn't seem to exist.

Replaced with a fake repo. Doesnt seem to be used.
2018-12-03 00:12:09 +05:30

20 lines
490 B
Nix

{ fetchurl, lib, melpaBuild, writeText }:
melpaBuild {
pname = "font-lock+";
version = "20180101.25";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/font-lock%2b.el?revision=25";
sha256 = "0197yzn4hbjmw5h3m08264b7zymw63pdafph5f3yzfm50q8p7kp4";
name = "font-lock+.el";
};
recipe = writeText "recipe" "(font-lock+ :fetcher github :repo \"\")";
meta = {
homepage = "https://melpa.org/#/font-lock+";
license = lib.licenses.gpl2Plus;
};
}