about summary refs log tree commit diff
path: root/overlays/patches/emacs/overlay/hydra/emacsen.nix
blob: d5278f13e80e54f3c492d46c18f2c392b13a737d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ nixpkgs }:
let
  pkgs = import nixpkgs {
    overlays = [
      (import ../default.nix)
    ];
  };
  inherit (pkgs) lib;

in {
  inherit (pkgs) emacsUnstable emacsUnstable-nox;
  inherit (pkgs) emacsGit emacsGit-nox;
  inherit (pkgs) emacsPgtk;
} // lib.optionalAttrs (lib.hasAttr "libgccjit" pkgs) {
  inherit (pkgs) emacsNativeComp emacsGitNativeComp emacsPgtkNativeComp;
}