2015-02-08 16:29:48 -08:00
|
|
|
# package.el-based emacs packages
|
2015-05-24 07:08:07 -07:00
|
|
|
|
|
|
|
## FOR USERS
|
2014-01-20 15:57:04 -08:00
|
|
|
#
|
2015-12-17 04:56:28 -08:00
|
|
|
# Recommended: simply use `emacsWithPackages` with the packages you want.
|
2014-01-20 15:57:04 -08:00
|
|
|
#
|
2015-12-17 04:56:28 -08:00
|
|
|
# Alterative: use `emacs`, install everything to a system or user profile
|
|
|
|
# and then add this at the start your `init.el`:
|
2015-05-24 07:08:07 -07:00
|
|
|
/*
|
|
|
|
(require 'package)
|
|
|
|
|
|
|
|
;; optional. makes unpure packages archives unavailable
|
|
|
|
(setq package-archives nil)
|
|
|
|
|
|
|
|
;; optional. use this if you install emacs packages to the system profile
|
|
|
|
(add-to-list 'package-directory-list "/run/current-system/sw/share/emacs/site-lisp/elpa")
|
|
|
|
|
|
|
|
;; optional. use this if you install emacs packages to user profiles (with nix-env)
|
|
|
|
(add-to-list 'package-directory-list "~/.nix-profile/share/emacs/site-lisp/elpa")
|
|
|
|
|
|
|
|
(package-initialize)
|
|
|
|
*/
|
|
|
|
|
|
|
|
## FOR CONTRIBUTORS
|
2014-01-20 15:57:04 -08:00
|
|
|
#
|
2015-05-24 07:08:07 -07:00
|
|
|
# When adding a new package here please note that
|
2016-01-16 09:06:48 -08:00
|
|
|
# * please use `elpaBuild` for pre-built package.el packages and
|
|
|
|
# `melpaBuild` or `trivialBuild` if the package must actually
|
|
|
|
# be built from the source.
|
2015-05-24 07:08:07 -07:00
|
|
|
# * lib.licenses are `with`ed on top of the file here
|
|
|
|
# * both trivialBuild and melpaBuild will automatically derive a
|
|
|
|
# `meta` with `platforms` and `homepage` set to something you are
|
|
|
|
# unlikely to want to override for most packages
|
2015-02-08 16:29:48 -08:00
|
|
|
|
2019-06-16 12:59:06 -07:00
|
|
|
{ lib, newScope, stdenv, fetchurl, fetchFromGitHub, runCommand, writeText
|
2014-01-20 15:57:04 -08:00
|
|
|
|
2016-01-20 10:53:11 -08:00
|
|
|
, emacs, texinfo, lndir, makeWrapper
|
2014-01-20 15:57:04 -08:00
|
|
|
, trivialBuild
|
|
|
|
, melpaBuild
|
|
|
|
|
|
|
|
, external
|
2019-08-04 09:55:15 -07:00
|
|
|
, pkgs
|
2018-07-20 12:54:05 -07:00
|
|
|
}:
|
2014-01-20 15:57:04 -08:00
|
|
|
|
2015-12-15 09:57:51 -08:00
|
|
|
let
|
|
|
|
|
2019-08-04 13:44:07 -07:00
|
|
|
mkElpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix {
|
2019-06-16 12:59:06 -07:00
|
|
|
inherit lib stdenv texinfo;
|
2015-12-16 18:43:43 -08:00
|
|
|
};
|
|
|
|
|
2019-08-03 12:48:11 -07:00
|
|
|
# Contains both melpa stable & unstable
|
|
|
|
melpaGeneric = import ../applications/editors/emacs-modes/melpa-packages.nix {
|
2019-08-04 09:55:15 -07:00
|
|
|
inherit external lib pkgs;
|
2015-12-16 18:43:43 -08:00
|
|
|
};
|
2019-08-04 13:44:07 -07:00
|
|
|
mkMelpaStablePackages = melpaGeneric "stable";
|
|
|
|
mkMelpaPackages = melpaGeneric "unstable";
|
2015-12-16 18:43:43 -08:00
|
|
|
|
2019-08-18 02:58:17 -07:00
|
|
|
mkOrgPackages = import ../applications/editors/emacs-modes/org-packages.nix {
|
|
|
|
inherit lib;
|
|
|
|
};
|
2016-05-07 15:50:58 -07:00
|
|
|
|
2016-08-19 13:09:41 -07:00
|
|
|
emacsWithPackages = import ../build-support/emacs/wrapper.nix {
|
2019-09-18 13:28:24 -07:00
|
|
|
inherit lib lndir makeWrapper runCommand;
|
2015-12-16 18:53:12 -08:00
|
|
|
};
|
|
|
|
|
2019-08-04 16:26:29 -07:00
|
|
|
mkManualPackages = import ../applications/editors/emacs-modes/manual-packages.nix {
|
|
|
|
inherit external lib pkgs;
|
2015-12-15 09:57:51 -08:00
|
|
|
};
|
2015-12-06 11:17:41 -08:00
|
|
|
|
2019-08-04 13:44:07 -07:00
|
|
|
in lib.makeScope newScope (self: lib.makeOverridable ({
|
|
|
|
elpaPackages ? mkElpaPackages self
|
|
|
|
, melpaStablePackages ? mkMelpaStablePackages self
|
|
|
|
, melpaPackages ? mkMelpaPackages self
|
|
|
|
, orgPackages ? mkOrgPackages self
|
|
|
|
, manualPackages ? mkManualPackages self
|
|
|
|
}: ({}
|
|
|
|
// elpaPackages // { inherit elpaPackages; }
|
|
|
|
// melpaStablePackages // { inherit melpaStablePackages; }
|
|
|
|
// melpaPackages // { inherit melpaPackages; }
|
|
|
|
// orgPackages // { inherit orgPackages; }
|
|
|
|
// manualPackages
|
|
|
|
// {
|
|
|
|
inherit emacs melpaBuild trivialBuild;
|
|
|
|
emacsWithPackages = emacsWithPackages self;
|
|
|
|
})
|
|
|
|
) {})
|