nixpkgs/pkgs/applications/editors/emacs-modes/font-lock-plus/default.nix
Elis Hirwing cc122e5ec3
font-lock-plus: 2017-0222.1755 -> 20180101.25
Also specified specific revisions of the file to download to not have
a breaking package whenever the author decides to update the package.

This happened on 2018-01-01 when the author updated the copyright of
the package to match the new year.
2018-01-03 19:55:38 +01:00

24 lines
673 B
Nix

{ fetchurl, lib, stdenv, melpaBuild }:
melpaBuild {
pname = "font-lock-plus";
version = "20180101.25";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/font-lock%2b.el?revision=25";
sha256 = "0197yzn4hbjmw5h3m08264b7zymw63pdafph5f3yzfm50q8p7kp4";
name = "font-lock+.el";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/font-lock+";
sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g";
name = "font-lock-plus";
};
meta = {
homepage = "https://melpa.org/#/font-lock+";
license = lib.licenses.gpl2Plus;
};
}