about summary refs log tree commit diff
path: root/hydra/emacsen.nix
blob: 7207c9688ad29b1039167ad7b7af47df83a30a38 (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) emacsGcc emacsPgtkGcc;
}