mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
93 lines
3 KiB
Nix
93 lines
3 KiB
Nix
{
|
|
description = "Bleeding edge Emacs overlay";
|
|
|
|
nixConfig = {
|
|
extra-substituters = [ "https://nix-community.cachix.org" ];
|
|
extra-trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
};
|
|
|
|
outputs =
|
|
{ self
|
|
, nixpkgs
|
|
, nixpkgs-stable
|
|
}:
|
|
let
|
|
inherit (nixpkgs) lib;
|
|
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
|
|
|
|
importPkgs = path: attrs: import path (attrs // {
|
|
config.allowAliases = false;
|
|
overlays = [ self.overlays.default ];
|
|
});
|
|
|
|
packages' = forAllSystems (system: (
|
|
let
|
|
pkgs = importPkgs nixpkgs { inherit system; };
|
|
inherit (pkgs) lib;
|
|
|
|
overlayAttributes = lib.pipe (import ./. pkgs pkgs) [
|
|
builtins.attrNames
|
|
(lib.partition (n: lib.isDerivation pkgs.${n}))
|
|
];
|
|
attributesToAttrset = attributes: lib.pipe attributes [
|
|
(map (n: lib.nameValuePair n pkgs.${n}))
|
|
lib.listToAttrs
|
|
];
|
|
|
|
in
|
|
{
|
|
lib = attributesToAttrset overlayAttributes.wrong;
|
|
packages = attributesToAttrset overlayAttributes.right;
|
|
}
|
|
));
|
|
|
|
in
|
|
{
|
|
# self: super: must be named final: prev: for `nix flake check` to be happy
|
|
overlays = {
|
|
default = final: prev: import ./overlays final prev;
|
|
emacs = final: prev: import ./overlays/emacs.nix final prev;
|
|
package = final: prev: import ./overlays/package.nix final prev;
|
|
};
|
|
# for backward compatibility, is safe to delete, not referenced anywhere
|
|
overlay = self.overlays.default;
|
|
|
|
hydraJobs =
|
|
lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system:
|
|
let
|
|
mkHydraJobs = pkgs:
|
|
let
|
|
inherit (pkgs) lib;
|
|
|
|
filterNonDrvAttrs = s: lib.mapAttrs (_: v: if (lib.isDerivation v) then v else filterNonDrvAttrs v) (lib.filterAttrs (_: v: lib.isDerivation v || (builtins.typeOf v == "set" && ! builtins.hasAttr "__functor" v)) s);
|
|
|
|
mkEmacsSet = emacs: filterNonDrvAttrs (pkgs.recurseIntoAttrs (pkgs.emacsPackagesFor emacs));
|
|
|
|
in
|
|
{
|
|
emacsen = {
|
|
inherit (pkgs) emacs-unstable emacs-unstable-nox;
|
|
inherit (pkgs) emacs-unstable-pgtk;
|
|
inherit (pkgs) emacs-git emacs-git-nox;
|
|
inherit (pkgs) emacs-git-pgtk;
|
|
inherit (pkgs) emacs-igc emacs-igc-pgtk;
|
|
inherit (pkgs) emacs-lsp;
|
|
inherit (pkgs) commercial-emacs;
|
|
};
|
|
};
|
|
|
|
in
|
|
{
|
|
"stable" = mkHydraJobs (importPkgs nixpkgs-stable { inherit system; });
|
|
"unstable" = mkHydraJobs (importPkgs nixpkgs { inherit system; });
|
|
});
|
|
|
|
packages = forAllSystems (system: packages'.${system}.packages);
|
|
lib = forAllSystems (system: packages'.${system}.lib);
|
|
};
|
|
}
|