summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/lib-requires/default.nix
blob: 84dae10127e9ea9f287d1c294df0e7bdfcb50d0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ fetchurl, lib, melpaBuild }:

melpaBuild {
  pname = "lib-requires";
  version = "20170307.757";

  src = fetchurl {
    url = "https://www.emacswiki.org/emacs/download/lib-requires.el";
    sha256 = "04lrkdjrhsgg7vgvw1mkr9a5m9xlyvjvnj2aj6w453bgmnp1mbvv";
    name = "lib-requires.el";
  };

  recipe = fetchurl {
    url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/lib-requires";
    sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx";
    name = "lib-requires";
  };

  meta = {
    homepage = "https://melpa.org/#/lib-requires";
    license = lib.licenses.gpl2Plus;
  };
}